diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/leafnode/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/leafnode/PKGBUILD')
-rw-r--r-- | community/leafnode/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/leafnode/PKGBUILD b/community/leafnode/PKGBUILD new file mode 100644 index 000000000..0b96590ab --- /dev/null +++ b/community/leafnode/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 18744 2010-06-14 12:55:42Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# You need an news user and group to build this package + +pkgname=leafnode +pkgver=1.11.8 +pkgrel=1 +pkgdesc="implements a store & forward NNTP proxy (client and server) with IPv4 and IPv6" +arch=('i686' 'x86_64') +url="http://leafnode.sourceforge.net/" +depends=(pcre xinetd) +license=('GPL') +install=(leafnode.install) +options=(!emptydirs) +backup=(etc/xinet.d/leafnode) +source=(http://downloads.sf.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 + leafnode.xinetd) +md5sums=('a3edafeb854efaa3fbb0f7951d02160f' + 'db3c6ad1ff9fc03442949456d1d21304') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc/leafnode + make || return 1 + make DESTDIR=$pkgdir install && \ + chown -R root.root $pkgdir && \ + install -D -m0644 $srcdir/leafnode.xinetd $pkgdir/etc/xinetd.d/leafnode +} + |