# $Id: PKGBUILD 262584 2016-03-26 19:45:32Z bpiotrowski $ # Maintainer (Arch): Dave Reisner # Contributor (Arch): Gaetan Bisson # Contributor (Arch): Daniel J Griffiths # Contributor (Arch): Jeff 'codemac' Mickey # Contributor (Arch): simo # Contributor (Arch): FUBAR # Maintainer: Márcio Silva pkgname=bitlbee pkgver=3.4.2 pkgrel=1.parabola1 pkgdesc='Brings instant messaging (XMPP, MSN, Yahoo!, AIM, ICQ, Twitter) to IRC, without nonfree Skype support' url='http://www.bitlbee.org/' license=('GPL') arch=('i686' 'x86_64' 'armv7h') depends=('gnutls' 'glib2') makedepends=('python' 'libotr') optdepends=('libotr: for OTR encryption support') replaces=("${pkgname}-libre" "${pkgname}-parabola") conflicts=("${pkgname}-libre" "${pkgname}-parabola") source=("http://get.bitlbee.org/src/$pkgname-$pkgver.tar.gz" 'bitlbee.tmpfiles') sha1sums=('c93eab4161754235a2bc04ba3dc0fc66ce2d34f2' '3695ed2fe22436c4d0fc3ead829f7d1f89bc491c') backup=('etc/bitlbee/bitlbee.conf' 'etc/bitlbee/motd.txt') install=bitlbee.install build() { cd "$pkgname-$pkgver" ./configure \ --prefix=/usr \ --etcdir=/etc/bitlbee \ --sbindir=/usr/bin \ --pidfile=/run/bitlbee/bitlbee.pid \ --ipcsocket=/run/bitlbee/bitlbee.sock \ --systemdsystemunitdir=/usr/lib/systemd/system \ --ssl=gnutls \ --strip=0 \ --otr=plugin \ --skype=0 make } package() { make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install{,-etc,-dev,-systemd} install -o65 -g65 -dm770 "$pkgdir/var/lib/bitlbee" install -Dm644 "$srcdir/bitlbee.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/bitlbee.conf" }