diff options
author | root <root@rshg054.dnsready.net> | 2012-10-01 00:42:10 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-10-01 00:42:10 -0700 |
commit | 9b6be78b0c13a61c14d5278f1363eaf9c6388e4c (patch) | |
tree | 72ca5c2f4a99c399cee5fe08d77d5fc33ab94e56 /gnome-unstable/gdl | |
parent | 75826a796a4589c1999f1b3b86eb8c122ef44edd (diff) |
Mon Oct 1 00:42:09 PDT 2012
Diffstat (limited to 'gnome-unstable/gdl')
-rw-r--r-- | gnome-unstable/gdl/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnome-unstable/gdl/PKGBUILD b/gnome-unstable/gdl/PKGBUILD new file mode 100644 index 000000000..5a7581c18 --- /dev/null +++ b/gnome-unstable/gdl/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 167319 2012-09-30 23:30:44Z heftig $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=gdl +pkgver=3.6.0 +pkgrel=1 +pkgdesc="GNOME Docking Library" +arch=(i686 x86_64) +license=('GPL') +url="http://www.gnome.org/" +depends=('gtk3') +makedepends=('gtk-doc' 'intltool' 'gobject-introspection') +options=('!libtool') +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('32a04fc96667e2f7ca1e3c853b996da3e62f4811b2a90d62cb2081f68aeecac3') + +build() { + cd "$pkgname-$pkgver" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-static + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |