27 lines
582 B
Plaintext
27 lines
582 B
Plaintext
# Description: HTTP library implementation in C.
|
|
# URL: http://live.gnome.org/LibSoup
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Packager: Matt Housh, jaeger at morpheus dot net
|
|
# Depends on: glib gnutls libxml2
|
|
|
|
name=libsoup
|
|
version=2.4.0
|
|
release=1
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/libsoup/${version%.*}/libsoup-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd libsoup-$version
|
|
|
|
# remove gtk-doc
|
|
sed -i -e "/^SUBDIRS = /s/docs//" Makefile.in
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-debug=no \
|
|
--disable-static
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|