blob: 15bad2f3354fbe05b9f6457d949be3ef5687340d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Bibliothèque d'accès aux services Web "RESTful"
# URL: http://www.gnome.org/
# Maintainer: NuTyX core team
# Packager: piernov <piernov@piernov.org>
# Depends on: glib, libxml2, libsoup, gobject-introspection
# Run on: glib,libxml2,libsoup
name=rest
version=0.7.10
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-gtk-doc
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
}
|