diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/libdesktop-agnostic/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/libdesktop-agnostic/PKGBUILD')
-rw-r--r-- | community/libdesktop-agnostic/PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/community/libdesktop-agnostic/PKGBUILD b/community/libdesktop-agnostic/PKGBUILD new file mode 100644 index 000000000..e6848d808 --- /dev/null +++ b/community/libdesktop-agnostic/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 79732 2012-11-11 19:02:50Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> +# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=libdesktop-agnostic +pkgver=0.3.92 +pkgrel=5 +pkgdesc="Provides an extensible config API, a unified virtual fs API, and a desktop item editor for GLib-based projects" +arch=('i686' 'x86_64') +url="https://launchpad.net/libdesktop-agnostic" +license=('GPL' 'LGPL') +depends=('pygtk') +makedepends=('intltool' 'vala' 'gconf' 'gobject-introspection') +optdepends=('gconf: gconf configuration backend') +options=('!libtool') +backup=(etc/xdg/libdesktop-agnostic/desktop-agnostic.ini) +source=(https://launchpad.net/$pkgname/0.4/$pkgver/+download/$pkgname-$pkgver.tar.gz) +md5sums=('42374d226a21d57637f97173f6b105a1') + +build() { + cd "$srcdir/$pkgname-$pkgver" + export PYTHON=/usr/bin/python2 + + python2 ./waf configure --prefix=/usr --sysconfdir=/etc \ + --config-backends=gconf,keyfile \ + --vfs-backends=gio \ + --desktop-entry-backends=gio,glib + python2 ./waf +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + python2 ./waf install --destdir="$pkgdir" +} |