diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-02-10 13:03:40 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-02-10 13:03:40 -0500 |
commit | 9e6b0435d589e32ab93291d4a119fff5892c680e (patch) | |
tree | 8607f9b140e5ffca03b3514082e74db18d3e14da /pcr/bitlbee-libpurple | |
parent | cfba75b9832f74234d527132c1def6ae5d20646e (diff) | |
download | abslibre-9e6b0435d589e32ab93291d4a119fff5892c680e.tar.gz abslibre-9e6b0435d589e32ab93291d4a119fff5892c680e.tar.bz2 abslibre-9e6b0435d589e32ab93291d4a119fff5892c680e.zip |
bitlbee-libpurple-3.4.1-1.parabola1: updating version
Diffstat (limited to 'pcr/bitlbee-libpurple')
-rw-r--r-- | pcr/bitlbee-libpurple/PKGBUILD | 57 | ||||
-rw-r--r-- | pcr/bitlbee-libpurple/bitlbee.install | 22 | ||||
-rw-r--r-- | pcr/bitlbee-libpurple/bitlbee.tmpfiles | 1 |
3 files changed, 80 insertions, 0 deletions
diff --git a/pcr/bitlbee-libpurple/PKGBUILD b/pcr/bitlbee-libpurple/PKGBUILD new file mode 100644 index 000000000..d57f08e04 --- /dev/null +++ b/pcr/bitlbee-libpurple/PKGBUILD @@ -0,0 +1,57 @@ + +# Contributor (Arch): Fernando Jiménez Solano (fjim) <fjim@sdfeu.org> +# Contributor (Arch): FUBAR <mrfubar@gmail.com> +# Contributor (Arch): simo <simo@archlinux.org> +# Contributor (Arch): Jeff 'codemac' Mickey <jeff@archlinux.org> +# Contributor (Arch): Daniel J Griffiths <ghost1227@archlinux.us> +# Contributor (Arch): Gaetan Bisson <bisson@archlinux.org> +# Contributor (Arch): Dave Reisner <dreisner@archlinux.org> +# Maintainer (Arch): dx <dx@dxzone.com.ar> +# Maintainer: Márcio Silva <coadde@parabola.nu> + +pkgname=bitlbee-libpurple +_pkgname=bitlbee +pkgver=3.4.1 +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' 'libpurple') +makedepends=('libotr' 'python') +optdepends=('libotr: for OTR encryption support') +provides=("bitlbee=${pkgver}") +conflicts=('bitlbee') +source=("http://get.bitlbee.org/src/${_pkgname}-${pkgver}.tar.gz" + 'bitlbee.tmpfiles') +sha1sums=('b77311b538ec1c584694784f119b99fb6b3f4859' + '3695ed2fe22436c4d0fc3ead829f7d1f89bc491c') +backup=('etc/bitlbee/bitlbee.conf' + 'etc/bitlbee/motd.txt') +install=${_pkgname}.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 \ + --purple=1 + + 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" +} diff --git a/pcr/bitlbee-libpurple/bitlbee.install b/pcr/bitlbee-libpurple/bitlbee.install new file mode 100644 index 000000000..c8a8f93a1 --- /dev/null +++ b/pcr/bitlbee-libpurple/bitlbee.install @@ -0,0 +1,22 @@ +post_install() { + if ! getent group bitlbee &>/dev/null; then + groupadd -r -g 65 bitlbee >/dev/null + fi + if ! getent passwd bitlbee &>/dev/null; then + useradd -r -u 65 -g bitlbee -d /var/lib/bitlbee -s /bin/false -c bitlbee bitlbee >/dev/null + fi + systemd-tmpfiles --create bitlbee.conf +} + +post_upgrade() { + post_install +} + +post_remove() { + if getent passwd bitlbee &>/dev/null; then + userdel bitlbee >/dev/null + fi + if getent group bitlbee &>/dev/null; then + groupdel bitlbee >/dev/null + fi +} diff --git a/pcr/bitlbee-libpurple/bitlbee.tmpfiles b/pcr/bitlbee-libpurple/bitlbee.tmpfiles new file mode 100644 index 000000000..da72a0a79 --- /dev/null +++ b/pcr/bitlbee-libpurple/bitlbee.tmpfiles @@ -0,0 +1 @@ +d /run/bitlbee 0755 bitlbee bitlbee - - |