diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-14 18:14:45 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-14 18:14:45 (GMT) |
commit | d1619a5abc60f3d9e7d3dad588ff1b92bb23e624 (patch) | |
tree | 48d339f8b0f3be940ac1b372c939f22377f983fd /abs/extra-testing/gdl/PKGBUILD | |
parent | c6d1a2299fae2c80be87634f38f6c61a7b8086e6 (diff) | |
download | linhes_pkgbuild-d1619a5abc60f3d9e7d3dad588ff1b92bb23e624.zip linhes_pkgbuild-d1619a5abc60f3d9e7d3dad588ff1b92bb23e624.tar.gz linhes_pkgbuild-d1619a5abc60f3d9e7d3dad588ff1b92bb23e624.tar.bz2 |
Missing makedepends for gnome-python-extras
enchant
gdl
gnome-doc-utils
gtkspell
hspell
libgksu
libgtkhtml
libgtop
Diffstat (limited to 'abs/extra-testing/gdl/PKGBUILD')
-rw-r--r-- | abs/extra-testing/gdl/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/extra-testing/gdl/PKGBUILD b/abs/extra-testing/gdl/PKGBUILD new file mode 100644 index 0000000..bd7853c --- /dev/null +++ b/abs/extra-testing/gdl/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 15373 2008-10-13 12:01:00Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=gdl +pkgver=2.24.0 +pkgrel=1 +pkgdesc="Gnome Devtool Libraries" +arch=(i686 x86_64) +license=('GPL') +url="http://www.gnome.org/" +depends=('libglade>=2.6.3') +makedepends=('pkgconfig') +options=('!libtool') +source=(http://ftp.gnome.org/pub/GNOME/sources/gdl/2.24/${pkgname}-${pkgver}.tar.bz2) +md5sums=('1d5cd4af1f4041394169d643316646bf') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-static || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |