blob: e63d5edb41eab123fd80d5484547ec921687b355 (
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.12
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-gtk-doc
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
}
|