diff options
Diffstat (limited to 'pygtk/Pkgfile')
-rw-r--r-- | pygtk/Pkgfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pygtk/Pkgfile b/pygtk/Pkgfile new file mode 100644 index 000000000..e1f3258c8 --- /dev/null +++ b/pygtk/Pkgfile @@ -0,0 +1,26 @@ +# Description: Permet l'implémentation de code python dans des applications utilisant gtk +# URL: http://www.pygtk.org/ +# Maintainer: NuTyX core team +# Packager: skingrapher at legtux dot org +# Depends on: gtk, pygobject, py2cairo, libglade +# Run on: gtk,pygobject,py2cairo,libglade + +name=pygtk +version=2.24.0 +release=1 +source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2 + python27.patch) + +build() { + cd $name-$version + patch -Np1 -i ../python27.patch + + PYTHON=python2 ./configure --prefix=/usr --enable-numpy + make + make DESTDIR=$PKG install + + sed -i -e 's#env python$#env python2#' $PKG/usr/lib/pygtk/2.0/{,demos/}*.py + install -m644 gtk/gtk-extrafuncs.defs $PKG/usr/share/pygtk/2.0/defs/ + rm -rf $PKG/usr/share/gtk-doc +} + |