diff options
author | root <root@rshg054.dnsready.net> | 2012-11-04 01:49:10 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-04 01:49:10 -0700 |
commit | 2030e810a5cfd4d3ff6e0f8930560c96f2990eb2 (patch) | |
tree | 383f3fafef303aec9d89c9da313b51bbaf424ac0 /community/gdlmm/PKGBUILD | |
parent | e3f70522f1f35359d9307f478c96dace20a51ca1 (diff) |
Sun Nov 4 01:48:41 PDT 2012
Diffstat (limited to 'community/gdlmm/PKGBUILD')
-rw-r--r-- | community/gdlmm/PKGBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/community/gdlmm/PKGBUILD b/community/gdlmm/PKGBUILD index 3c5d0091f..fb02bfec9 100644 --- a/community/gdlmm/PKGBUILD +++ b/community/gdlmm/PKGBUILD @@ -1,20 +1,25 @@ -# $Id: PKGBUILD 69726 2012-04-23 09:06:41Z ibiru $ +# $Id: PKGBUILD 79334 2012-11-03 04:07:35Z bgyorgy $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> pkgname=gdlmm pkgver=3.3.2 -pkgrel=2 +pkgrel=3 pkgdesc="C++ bindings for the gdl library" arch=('x86_64' 'i686') url="http://git.gnome.org/browse/gdlmm/" depends=('gdl' 'gtkmm3') options=(!libtool !emptydirs) license=('LGPL') -source=("http://ftp.gnome.org/pub/GNOME/sources/gdlmm/3.3/$pkgname-$pkgver.tar.xz") -sha256sums=('cf3253be052737332b2b6e9dbd6f62d79cbc3f3398497158c0099dbc45741a46') +source=("http://ftp.gnome.org/pub/GNOME/sources/gdlmm/3.3/$pkgname-$pkgver.tar.xz" + "0001-Don-t-wrap-gdl_dock_layout_get_layouts_ui.patch") +sha256sums=('cf3253be052737332b2b6e9dbd6f62d79cbc3f3398497158c0099dbc45741a46' + '8fb0d920c5c3d4279738f048cbff65b5b4fa544c9f004f8e64d39e54f52653d5') build() { cd "$srcdir/$pkgname-$pkgver" + # Fix build with gdl 3.6 + patch -Np1 -i "$srcdir/0001-Don-t-wrap-gdl_dock_layout_get_layouts_ui.patch" + ./configure --prefix=/usr --sysconfdir=/etc make } |