From 0da33c3a9130de411218646a00380feea7c495e8 Mon Sep 17 00:00:00 2001
From: beefcurtains <beefcurtains@users.noreply.github.com>
Date: Mon, 25 May 2015 16:43:45 +0000
Subject: [PATCH] New package: since-1.1

---
 srcpkgs/since/template | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 srcpkgs/since/template

diff --git a/srcpkgs/since/template b/srcpkgs/since/template
new file mode 100644
index 00000000000..cf9fc9e9869
--- /dev/null
+++ b/srcpkgs/since/template
@@ -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
+}