diff options
Diffstat (limited to 'extra/folks/PKGBUILD')
-rw-r--r-- | extra/folks/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/folks/PKGBUILD b/extra/folks/PKGBUILD new file mode 100644 index 000000000..81036be00 --- /dev/null +++ b/extra/folks/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 120851 2011-04-26 21:20:48Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +pkgname=folks +pkgver=0.4.3 +pkgrel=1 +pkgdesc="Library to aggregates people into metacontacts " +arch=(i686 x86_64 'mips64el') +url="http://telepathy.freedesktop.org/wiki/Folks" +license=('LGPL2.1') +depends=('telepathy-glib' 'libgee' 'libxml2') +makedepends=('gobject-introspection' 'vala' 'intltool') +options=('!libtool') +source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.4/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('e5a5bbe1524130ff5b6400726db3e12299b12ffefa108bc89169509f343d925e') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |