updated on Fri Jan 20 04:00:45 UTC 2012
[aur-mirror.git] / flog / PKGBUILD
blob9ac27bcab23a7f67586c8be360bf0519a7eea909
1 # Maintainer: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
3 pkgname=flog
4 pkgver=1.8
5 pkgrel=2
6 pkgdesc="Reads from STDIN and writes to a file. If a SIGHUP is received, the file will be reopened (for logrotating)"
7 arch=('i686' 'x86_64')
8 url="http://oss.ezic.com/"
9 license=('GPL')
10 depends=('glibc')
11 source=(http://oss.ezic.com/flog/$pkgname-$pkgver.tar.gz)
12 md5sums=('adf022289e9b46817958140455e3e400')
14 build() {
15   cd "$srcdir/$pkgname-$pkgver"
17   make || return 1
19   install -d $pkgdir/usr/bin
20   install -d $pkgdir/usr/share/doc/flog
22   install -m 755 flog $pkgdir/usr/bin/
23   install -m 644 README $pkgdir/usr/share/doc/flog/
26 # vim:set ts=2 sw=2 et: