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/znc |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/znc')
-rw-r--r-- | community/znc/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/znc/PKGBUILD b/community/znc/PKGBUILD new file mode 100644 index 000000000..fcbfea36a --- /dev/null +++ b/community/znc/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 32285 2010-11-13 03:23:05Z kchen $ +# Maintainer: Kaiting Chen <kaitocracy@gmail.com> +# Contributor: mickael9 <mickael9 at gmail dot com> + +pkgname=znc +pkgver=0.096 +pkgrel=2 +pkgdesc='An IRC proxy (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') +optdepends=('tcl: modtcl module' + 'perl: modperl module' + 'cyrus-sasl: saslauth module') + +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('38eec4f1911a68b4d2fc704170e7cbf6') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --enable-sasl \ + --enable-tcl \ + --enable-perl \ + --enable-extra + make; make DESTDIR="$pkgdir" install +} |