blob: 440ff3284885e05df6db212bd6528d7b94ec920a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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, gdk-pixbuf, gobject-introspection
# Run on: p5-xml-parser,gconf,pygtk
name=libgsf
version=1.14.23
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-gtk-doc \
--with-bz2 \
--with-python \
--with-gio
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|