diff options
author | root <root@rshg054.dnsready.net> | 2011-09-04 23:14:34 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-04 23:14:34 +0000 |
commit | 6dee0a203a8290427ca77705bc1cae90381529b2 (patch) | |
tree | eef4e102b2f44b6b52f0edc70b9dae278b80821c /gnome-unstable/gnome-contacts | |
parent | 3b18be1752c9fd9fa74eb1314ca97dd61e9ce912 (diff) |
Sun Sep 4 23:14:34 UTC 2011
Diffstat (limited to 'gnome-unstable/gnome-contacts')
-rw-r--r-- | gnome-unstable/gnome-contacts/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnome-unstable/gnome-contacts/PKGBUILD b/gnome-unstable/gnome-contacts/PKGBUILD new file mode 100644 index 000000000..81aae1ef1 --- /dev/null +++ b/gnome-unstable/gnome-contacts/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 136955 2011-09-03 20:21:17Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +pkgname=gnome-contacts +pkgver=0.1.3 +pkgrel=1 +pkgdesc="Contacts Manager for GNOME" +arch=(i686 x86_64) +url="http://www.gnome.org" +license=('GPL2') +groups=(gnome-extra) +depends=('gtk3' 'folks' 'libnotify') +makedepends=('intltool' 'vala') +install= +source=(http://download.gnome.org/sources/$pkgname/0.1/$pkgname-$pkgver.tar.xz) +sha256sums=('3de2987af8bad5dce9d165bc07be1080ef2922f68ab0f93157c28fb7ad9af778') + +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: |