diff options
author | root <root@rshg047.dnsready.net> | 2011-04-07 04:58:41 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-04-07 04:58:41 +0000 |
commit | db464f25fec54ddfa7825a17b20fda025c296f8c (patch) | |
tree | 4bb5b8ac4dfd67096125b92d047323e6acbb86cd /community/znc | |
parent | bd65dc7107bfdd881c3b5451d0300824cf435428 (diff) |
Thu Apr 7 04:58:41 UTC 2011
Diffstat (limited to 'community/znc')
-rw-r--r-- | community/znc/PKGBUILD | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/community/znc/PKGBUILD b/community/znc/PKGBUILD index fcbfea36a..abefc073f 100644 --- a/community/znc/PKGBUILD +++ b/community/znc/PKGBUILD @@ -1,30 +1,33 @@ -# $Id: PKGBUILD 32285 2010-11-13 03:23:05Z kchen $ +# $Id: PKGBUILD 44397 2011-04-07 02:06:55Z kchen $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: mickael9 <mickael9 at gmail dot com> pkgname=znc -pkgver=0.096 +pkgver=0.098 pkgrel=2 -pkgdesc='An IRC proxy (bouncer) with modules & scripts support' +pkgdesc='An IRC bouncer with modules & scripts support' url='http://en.znc.in/wiki/index.php/ZNC' license=('GPL2') arch=('i686' 'x86_64') depends=('c-ares' 'gcc-libs' 'openssl') -makedepends=('swig' 'tcl' 'perl' 'cyrus-sasl') +makedepends=('swig' 'tcl' 'python' 'perl' 'cyrus-sasl') optdepends=('tcl: modtcl module' + 'python: modpython module' 'perl: modperl module' 'cyrus-sasl: saslauth module') -source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") md5sums=('38eec4f1911a68b4d2fc704170e7cbf6') +source=("http://znc.in/releases/$pkgname-$pkgver.tar.gz") build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr \ --enable-sasl \ --enable-tcl \ + --enable-python \ --enable-perl \ --enable-extra make; make DESTDIR="$pkgdir" install } +md5sums=('5667b4acb1f01309d6eded77abac700c') |