2008-02-23 19:28:40 +11:00
|
|
|
# Description: HTTP library implementation in C.
|
|
|
|
# URL: http://live.gnome.org/LibSoup
|
2008-03-26 13:45:31 +11:00
|
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
2008-02-23 19:28:40 +11:00
|
|
|
# Packager: Matt Housh, jaeger at morpheus dot net
|
2008-03-20 08:14:01 +11:00
|
|
|
# Depends on: glib gnutls libxml2
|
2008-02-23 19:28:40 +11:00
|
|
|
|
|
|
|
name=libsoup
|
2010-12-14 18:18:23 +11:00
|
|
|
version=2.32.2
|
2008-02-23 19:28:40 +11:00
|
|
|
release=1
|
2009-05-10 16:30:48 +10:00
|
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.bz2)
|
2008-02-23 19:28:40 +11:00
|
|
|
|
|
|
|
build() {
|
2009-05-10 16:30:48 +10:00
|
|
|
cd $name-$version
|
2008-02-23 19:28:40 +11:00
|
|
|
|
|
|
|
# remove gtk-doc
|
|
|
|
sed -i -e "/^SUBDIRS = /s/docs//" Makefile.in
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-debug=no \
|
2009-05-10 16:30:48 +10:00
|
|
|
--disable-static \
|
|
|
|
--without-gnome
|
2008-02-23 19:28:40 +11:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|