diff options
Diffstat (limited to 'community/delegate/PKGBUILD')
-rw-r--r-- | community/delegate/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/delegate/PKGBUILD b/community/delegate/PKGBUILD new file mode 100644 index 000000000..e9b4f9a87 --- /dev/null +++ b/community/delegate/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 91876 2013-05-28 17:59:23Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=delegate +pkgver=9.9.7 +pkgrel=3 +pkgdesc="Caching and converting multyprotocol proxy. For example, you may use it as NNTP web interface" +arch=('i686' 'x86_64') +url="http://www.delegate.org/" +license=('GPL') +depends=('pam') +options=(!strip) +install=delegate.install +source=(ftp://ftp:ps790809%40inbox%2Eru@ftp.delegate.org/pub/DeleGate/delegate$pkgver.tar.gz) +md5sums=('86c833e95cd16a54d54fa3c7e4ab7929') + +build() { + cd $srcdir/$pkgname$pkgver + make ADMIN="root@localhost" +} + +package() { + cd $srcdir/$pkgname$pkgver + + install -D -m0755 src/delegated $pkgdir/usr/bin/delegated + + install -D -m0755 subin/dgbind $pkgdir/usr/bin/dgbind + install -D -m0755 subin/dgchroot $pkgdir/usr/bin/dgchroot + install -D -m0755 subin/dgcpnod $pkgdir/usr/bin/dgcpnod + install -D -m0755 subin/dgpam $pkgdir/usr/bin/dgpam + + install -D -m0644 doc/Manual.htm $pkgdir/usr/share/delegate/manual.htm + install -D -m0644 doc/tutor-en.htm $pkgdir/usr/share/delegate/tutor-en.htm +} |