blob: bae4843c3fc17c5391e6539e0c625938d9f70c2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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
name=libgsf
version=1.14.9
release=1
source=( http://ftp.gnome.org/pub/gnome/sources/libgsf/1.14/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-gtk-doc \
--without-gnome \
--with-bz2
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|