diff options
author | root <root@rshg054.dnsready.net> | 2012-03-11 00:02:38 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-11 00:02:38 +0000 |
commit | 503034bfe282c58ff13c42c7a6b92aa062d779b5 (patch) | |
tree | ece09793a2bf096dd717bcd4082f0814784b8b27 /gnome-unstable/glade/PKGBUILD | |
parent | 3792e3874accbc868e7032042f1ecefdef25638e (diff) |
Sun Mar 11 00:02:37 UTC 2012
Diffstat (limited to 'gnome-unstable/glade/PKGBUILD')
-rw-r--r-- | gnome-unstable/glade/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnome-unstable/glade/PKGBUILD b/gnome-unstable/glade/PKGBUILD new file mode 100644 index 000000000..ef5a3a619 --- /dev/null +++ b/gnome-unstable/glade/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 152756 2012-03-09 14:31:34Z ibiru $ +# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org> + +pkgname=glade +pkgver=3.11.0 +pkgrel=1 +pkgdesc="User interface builder for GTK+ and GNOME." +arch=(i686 x86_64) +license=('GPL' 'LGPL') +depends=('gtk3' 'libxml2' 'desktop-file-utils' 'hicolor-icon-theme') +makedepends=('intltool' 'python2' 'gtk-doc' 'gobject-introspection' 'python2-gobject') +optdepends=('python2: Python widgets support') +options=('!libtool') +url="http://glade.gnome.org/" +install=glade.install +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('fffbd4b79ca46cbb9332c0377735de34f01cdc31921a911f609edf0e87bdd4da') + +build() { + cd "$pkgname-$pkgver" + PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-static + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |