mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-24 23:47:17 +00:00
22 lines
650 B
Bash
22 lines
650 B
Bash
# Author: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
|
|
# Maintainer: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
|
|
|
|
pkgname=git-etc
|
|
pkgver=2.3.0
|
|
pkgrel=1
|
|
pkgdesc="Simple daemon for monitoring changes in files"
|
|
arch=('i686' 'x86_64')
|
|
url="http://arcan1s.github.io/projects/git-etc"
|
|
license=("GPLv3")
|
|
depends=('git')
|
|
makedeps=('python2')
|
|
optdepends=('python2-pyqt4: for GUI'
|
|
'xterm: for GUI')
|
|
source=(https://github.com/arcan1s/git-etc/releases/download/V.${pkgver}/${pkgname}-${pkgver}-src.tar.xz)
|
|
md5sums=('b889107af9871d73830e72524ef20ec9')
|
|
backup=('etc/git-etc.conf')
|
|
|
|
package() {
|
|
"${srcdir}/${pkgname}/install.sh" "${pkgdir}"
|
|
}
|