blob: bea55042ab9daeb84a8471fd6d113696b2151fcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Maintainer: aksr <aksr at t-com dot me>
pkgname=fswatch-git
pkgver=1.8.0.r0.gcda2487
pkgrel=1
epoch=
pkgdesc="A file change monitor that receives notifications when the contents of the specified files or directories are modified."
arch=('i686' 'x86_64')
url="https://github.com/emcrisostomo/fswatch"
url="https://emcrisostomo.github.io/fswatch/"
license=('GPLv3')
groups=()
depends=('')
makedepends=('git')
optdepends=()
checkdepends=()
provides=('fswatch')
conflicts=('fswatch')
replaces=()
backup=()
options=()
changelog=
install=
source=("$pkgname::git+https://github.com/emcrisostomo/fswatch.git")
noextract=()
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
git describe --long | sed -E 's/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$pkgname"
./autogen.sh
./configure --prefix=/usr
make
}
check() {
cd "$srcdir/$pkgname"
make -k check
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
}
|