diff options
Diffstat (limited to 'extra/bitlbee/PKGBUILD')
-rw-r--r-- | extra/bitlbee/PKGBUILD | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/extra/bitlbee/PKGBUILD b/extra/bitlbee/PKGBUILD index ce74ff1bb..2153ff5ad 100644 --- a/extra/bitlbee/PKGBUILD +++ b/extra/bitlbee/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 144362 2011-12-05 08:15:00Z bisson $ +# $Id: PKGBUILD 144487 2011-12-06 22:43:42Z bisson $ # Contributor: FUBAR <mrfubar@gmail.com> # Contributor: simo <simo@archlinux.org> @@ -8,13 +8,16 @@ pkgname=bitlbee pkgver=3.0.4 -pkgrel=1 +pkgrel=3 pkgdesc='Brings instant messaging (XMPP, MSN, Yahoo!, AIM, ICQ, Twitter) to IRC' -arch=('i686' 'x86_64' 'mips64el') url='http://www.bitlbee.org/' license=('GPL') -depends=('openssl' 'glib2' 'libotr') -optdepends=('xinetd: to run bitlbee through xinetd') +arch=('i686' 'x86_64' 'mips64el') +depends=('openssl' 'glib2') +makedepends=('asciidoc' 'libotr') +optdepends=('skype4py: to use skyped' + 'libotr: for OTR encryption support' + 'xinetd: to run bitlbee through xinetd') source=("http://get.bitlbee.org/src/${pkgname}-${pkgver}.tar.gz" 'xinetd' 'rc.d') @@ -28,15 +31,15 @@ install=install build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr \ + ./configure \ + --prefix=/usr \ --etcdir=/etc/bitlbee \ --pidfile=/var/run/bitlbee/bitlbee.pid \ --ipcsocket=/var/run/bitlbee/bitlbee.sock \ --systemdsystemunitdir=/lib/systemd/system \ --ssl=openssl \ --strip=0 \ - --otr=1 \ - --ssl=gnutls + --otr=plugin make } |