diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-04-25 02:22:37 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-04-25 02:22:37 -0300 |
commit | cbe6c5e41520a7d5db20bcd513368ca6d90d22d3 (patch) | |
tree | 998ba2ca359ef2afa15ce320f66c7739571999e2 /nonprism/empathy/PKGBUILD | |
parent | 7a558c8a898319b6388758b733e802ea2147d4e6 (diff) | |
download | abslibre-cbe6c5e41520a7d5db20bcd513368ca6d90d22d3.tar.gz abslibre-cbe6c5e41520a7d5db20bcd513368ca6d90d22d3.tar.bz2 abslibre-cbe6c5e41520a7d5db20bcd513368ca6d90d22d3.zip |
empathy: add new package to [nonprism]
Diffstat (limited to 'nonprism/empathy/PKGBUILD')
-rw-r--r-- | nonprism/empathy/PKGBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/nonprism/empathy/PKGBUILD b/nonprism/empathy/PKGBUILD new file mode 100644 index 000000000..9b427d666 --- /dev/null +++ b/nonprism/empathy/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 249326 2015-10-14 14:29:56Z heftig $ +# Maintainer (Arch): Ionut Biru <ibiru@archlinux.org> +# Maintainer: André Silva <emulatorman@parabola.nu> + +pkgname=empathy +pkgver=3.12.11 +pkgrel=1.nonprism1 +pkgdesc="A GNOME instant messaging client using the Telepathy framework, without geoclue2 support" +arch=(i686 x86_64) +url="http://live.gnome.org/Empathy" +license=(GPL2) +depends=(clutter-gst2 clutter-gtk folks gcr iso-codes libcanberra libpulse webkitgtk + telepathy-farstream telepathy-glib telepathy-logger telepathy-mission-control + geocode-glib cheese libchamplain libgudev) +makedepends=(intltool itstool docbook-xsl python2) +optdepends=('telepathy-gabble: XMPP/Jabber support' + 'telepathy-idle: IRC support' + 'telepathy-salut: Link-local XMPP support' + 'telepathy-rakia: SIP support' + 'telepathy-haze: libpurple support') +options=('!makeflags') +groups=(gnome) +install=empathy.install +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz) +sha256sums=('d1e4ff4e5f502b7f4ca2c6140462bad2a712b82f019aea4e0a2700e77545d487') + +build() { + cd $pkgname-$pkgver + PYTHON=/usr/bin/python2 ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/empathy \ + --disable-static \ + --enable-location=no + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} |