blob: 0c37c0fdf700c3567560999daeeddc930e5c7b73 (
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
49
50
51
52
53
|
# Maintainer: aksr <aksr at t-com dot me>
pkgname=fswatch-git
pkgver=1.11.2.r108.g2b810f0
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
mkdir -p $pkgdir/usr/share/licenses/${pkgname%-*}
cd $pkgdir/usr/share/doc/${pkgname%-*}
rm {ABOUT-NLS,AUTHORS,AUTHORS.libfswatch,CONTRIBUTING.md,NEWS,NEWS.libfswatch}
rm README.{bsd,codestyle,freebsd,gnu-build-system,illumos,osx,smartos,solaris,windows}
mv COPYING $pkgdir/usr/share/licenses/${pkgname%-*}/COPYING
}
|