blob: abefc073fb9b441e46fefd790ba3dfc7257e4b86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $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.098
pkgrel=2
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' 'python' 'perl' 'cyrus-sasl')
optdepends=('tcl: modtcl module'
'python: modpython module'
'perl: modperl module'
'cyrus-sasl: saslauth module')
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')
|