diff options
Diffstat (limited to 'community/dante/PKGBUILD')
-rw-r--r-- | community/dante/PKGBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/community/dante/PKGBUILD b/community/dante/PKGBUILD new file mode 100644 index 000000000..176fdafa7 --- /dev/null +++ b/community/dante/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 42958 2011-03-22 21:15:35Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Guillem Rieu <guillemr@gmx.net> + +pkgname=dante +pkgver=1.2.3 +pkgrel=1 +pkgdesc="SOCKS v4 and v5 compatible proxy server and client" +url="http://www.inet.no/dante" +arch=(i686 x86_64) +license=('custom') +depends=('tcp_wrappers' 'pam') +backup=('etc/socks.conf' + 'etc/sockd.conf') +options=(!libtool) +source=(ftp://ftp.inet.no/pub/socks/${pkgname}-${pkgver}.tar.gz + sockd.rc) +md5sums=('b2874e53f5d8fe418cd40cb829536669' + '5110dfd78a2b38fff27a886ee88b58a6') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr --sysconfdir=/etc + make + make DESTDIR=${pkgdir} install + + # Config files + mkdir -p ${pkgdir}/etc/conf.d + cp example/{socks,sockd}.conf ${pkgdir}/etc + + # License + install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE + + # rc-script + install -D -m755 ${srcdir}/sockd.rc ${pkgdir}/etc/rc.d/sockd + echo 'SOCKD_OPTS="-D"' >${pkgdir}/etc/conf.d/sockd.conf +} |