summaryrefslogtreecommitdiff
path: root/pcr/fsniper/PKGBUILD
blob: bf7e3a6c38d27d2564371366ae9ebd0a2752fa9e (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
# Initial Contributor: andrewy
# Actual Contributor: Luca Cesari <luca.cesari@bewq.org>

arch=(i686 x86_64)
pkgname=fsniper
pkgver=1.3.1
pkgrel=2
pkgdesc="Daemon to run scripts based on changes in files monitored by inotify"
url="http://projects.l3ib.org/fsniper/"
license="GPL3"
depends=('pcre' 'file')
source=(http://projects.l3ib.org/fsniper/files/$pkgname-$pkgver.tar.gz)
md5sums=('62f30bb4b00f9499499d83a30281f10f')

build() {
  cd ${srcdir}/$pkgname-$pkgver

  ./configure --prefix=/usr
  make
}

package() {
  cd ${srcdir}/$pkgname-$pkgver

  make DESTDIR=${pkgdir} install

  install -m644 -D ${srcdir}/$pkgname-$pkgver/README \
                   ${pkgdir}/usr/share/${pkgname}/README
  install -m644 -D ${srcdir}/$pkgname-$pkgver/example.conf \
                   ${pkgdir}/usr/share/${pkgname}/example.conf

}