New package: since-1.1

This commit is contained in:
beefcurtains 2015-05-25 16:43:45 +00:00
parent 208477330d
commit 0da33c3a91

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
}