summaryrefslogtreecommitdiffstats
path: root/base/glib/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'base/glib/Pkgfile')
-rwxr-xr-xbase/glib/Pkgfile10
1 files changed, 7 insertions, 3 deletions
diff --git a/base/glib/Pkgfile b/base/glib/Pkgfile
index 0d419a680..c03789b6d 100755
--- a/base/glib/Pkgfile
+++ b/base/glib/Pkgfile
@@ -1,15 +1,18 @@
-# Description: Librairie de bas niveau utilisée par de nombreux paquets gtk et autres
+# Description: Bibliothèque bas niveau utilisée par de nombreux paquets gtk et autres
# URL: http://www.gtk.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
+# Depends on: python2
+# Run on: python2
name=glib
-version=2.28.8
+version=2.29.90
release=1
-source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2)
+source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
build () {
cd $name-$version
+ export PYTHON=python2
./configure --prefix=/usr \
--with-pcre=system \
--mandir=/usr/share/man \
@@ -19,4 +22,5 @@ build () {
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
+ sed -i -e "s|#!/usr/bin/env python|#!/usr/bin/env python2|" $PKG/usr/bin/gdbus-codegen
}