commit c4322f1a8d0e2cab95ac1e18b919db9ca1f9d211 Author: Jaroslav Lichtblau Date: Fri Nov 28 20:17:14 2014 +0100 Initial PKGBUILD status as of 28.11.2014 diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..9328ec4ee185 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = newstap + pkgdesc = Retrieve news from NNTP and deliver them to one or more destinations as regular electronic mail messages. + pkgver = 1.0.0 + pkgrel = 3 + url = http://amtrickey.net/newstap/ + arch = i686 + arch = x86_64 + license = GPL + source = http://downloads.sourceforge.net/sourceforge/newstap/newstap-1.0.0.tar.gz + md5sums = ec431267678a8cfdb6231895cac34ff6 + +pkgname = newstap + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..1814a4a849e5 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: Jaroslav Lichtblau + +pkgname=newstap +pkgver=1.0.0 +pkgrel=3 +pkgdesc="Retrieve news from NNTP and deliver them to one or more destinations as regular electronic mail messages." +arch=('i686' 'x86_64') +url="http://amtrickey.net/newstap/" +license=('GPL') +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('ec431267678a8cfdb6231895cac34ff6') + +build() { + cd "${srcdir}/$pkgname" + + make +} + +package() { + cd "${srcdir}/$pkgname" + + make PREFIX="${pkgdir}/usr" MAN="${pkgdir}/usr/share/man" install +}