Merge pull request #1650 from beefcurtains/since

New package: since-1.1
This commit is contained in:
Juan RP 2015-05-26 11:35:27 +02:00
commit 7933a9753e

21
srcpkgs/since/template Normal file
View File

@ -0,0 +1,21 @@
# Template file for 'since'
pkgname=since
version=1.1
revision=1
short_desc="Stateful tail"
maintainer="beefcurtains <beefcurtains@users.noreply.github.com>"
license="GPL-3"
homepage="http://welz.org.za/projects/${pkgname}"
distfiles="${homepage}/${pkgname}-${version}.tar.gz"
checksum=739b7f161f8a045c1dff184e0fc319417c5e2deb3c7339d323d4065f7a3d0f45
do_build() {
# Don't even bother with the makefile
CFLAGS+=" -DUSE_INOTIFY -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
${CC} ${pkgname}.c -o ${pkgname} -O2 ${CFLAGS} ${LDFLAGS}
}
do_install() {
vbin ${pkgname}
vman ${pkgname}.1
}