diff options
Diffstat (limited to 'libgsf/Pkgfile')
-rwxr-xr-x | libgsf/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libgsf/Pkgfile b/libgsf/Pkgfile new file mode 100755 index 000000000..ee3eacc49 --- /dev/null +++ b/libgsf/Pkgfile @@ -0,0 +1,24 @@ +# Description: Librairie pour la lecture et l'écriture de fichiers au format structuré +# URL: http://www.gnome.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: p5-xml-parser, gconf, pygtk +# Run on: p5-xml-parser,gconf,pygtk + +name=libgsf +version=1.14.21 +release=1 +source=( http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.bz2) + +build() { + cd $name-$version + PYTHON=python2 ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --disable-gtk-doc \ + --without-gnome \ + --with-bz2 + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/share/gtk-doc +} + |