Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit c4322f1a8d
2 changed files with 36 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -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

23
PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
# Maintainer: Jaroslav Lichtblau <dargonlord@aur.archlinux.org>
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
}