summaryrefslogtreecommitdiff
path: root/community/leafnode/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/leafnode/PKGBUILD')
-rw-r--r--community/leafnode/PKGBUILD29
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
+}
+