blob: 20ada4d03f36b02b8e1ee26d330c11ca0b98498f (
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
|
# Maintainer: Andy Weidenbaum <archbaum@gmail.com>
pkgname=facron-git
pkgver=20150129
pkgrel=1
pkgdesc="Advanced filesystem cron based on fanotify"
arch=('i686' 'x86_64')
makedepends=('autoconf' 'gcc' 'git' 'make' 'pkg-config')
url="https://github.com/Keruspe/facron"
license=('GPL3')
source=(git+https://github.com/Keruspe/facron)
sha256sums=('SKIP')
provides=('facron')
conflicts=('facron')
pkgver() {
cd ${pkgname%-git}
git log -1 --format="%cd" --date=short --no-show-signature | sed "s|-||g"
}
build() {
cd ${pkgname%-git}
msg2 'Building...'
./autogen.sh
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--libexecdir=/usr/lib/facron \
--sysconfdir=/etc \
--sharedstatedir=/usr/share/facron \
--localstatedir=/var/lib/facron \
--with-systemdsystemunitdir=/usr/lib/systemd/system
make
}
package() {
cd ${pkgname%-git}
msg2 'Installing...'
make DESTDIR="$pkgdir" install
msg2 'Cleaning up pkgdir...'
find "$pkgdir" -type d -name .git -exec rm -r '{}' +
}
|