diff options
Diffstat (limited to 'testing/dbus-glib/PKGBUILD')
-rw-r--r-- | testing/dbus-glib/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/dbus-glib/PKGBUILD b/testing/dbus-glib/PKGBUILD new file mode 100644 index 000000000..fa15a7b85 --- /dev/null +++ b/testing/dbus-glib/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 128599 2011-06-24 13:51:01Z ibiru $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=dbus-glib +pkgver=0.94 +pkgrel=1 +pkgdesc="GLib bindings for DBUS" +arch=(i686 x86_64) +license=('GPL') +url="http://www.freedesktop.org/wiki/Software/DBusBindings" +depends=('dbus-core' 'glib2') +makedepends=('pkgconfig') +options=('!libtool' '!emptydirs') +source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('e1f1506a6f4941e67bffd614b1ad5af6') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --enable-static=no --enable-bash-completion=no + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |