blob: 908919a6ad030174adb6056c3ac52289cdf8302c (
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
|
# Maintainer: Rafael Fontenelle <rafaelff@gnome.org>
# Contributor: Jameson Pugh <imntreal@gmail.com>
# Contributor: Timothy Rice <t.rice@ms.unimelb.edu.au>
pkgname=direvent
pkgver=5.3
pkgrel=1
pkgdesc="Deamon that monitors events in the file system directories"
arch=('i686' 'x86_64')
url="https://www.gnu.org.ua/software/direvent/"
license=("GPL")
depends=('glibc')
source=("http://ftp.gnu.org/gnu/direvent/${pkgname}-${pkgver}.tar.gz"{,.sig})
sha256sums=('9405a8a77da49fe92bbe4af18bf925ff91f6d3374c10b7d700a031bacb94c497'
'SKIP')
validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732')
# Sergey Poznyakoff <gray@gnu.org>
# To validate, see instructions at:
# https://www.gnu.org.ua/software/direvent/download.html
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make -k check
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="$pkgdir/" install
}
|