blob: 6028eaadb7bd5cd25f7dbfffbd13b3c14e7a50a1 (
plain)
1 # Description: HTTP library implementation in C.
2 # URL: http://live.gnome.org/LibSoup
3 # Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
4 # Packager: Matt Housh, jaeger at morpheus dot net
5 # Depends on: glib gnutls libxml2 libgcrypt
6
7 name=libsoup
8 version=2.2.105
9 release=1
10 source=(http://ftp.gnome.org/pub/GNOME/sources/libsoup/${version%.*}/libsoup-$version.tar.bz2)
11
12 build() {
13 cd libsoup-$version
14
15 # remove gtk-doc
16 sed -i -e "/^SUBDIRS = /s/docs//" Makefile.in
17
18 ./configure \
19 --prefix=/usr \
20 --enable-debug=no \
21 --disable-static
22
23 make
24 make DESTDIR=$PKG install
25 }
|