contrib/libsoup/Pkgfile

31 lines
729 B
Plaintext
Raw Normal View History

2008-02-23 09:28:40 +01:00
# Description: HTTP library implementation in C.
# URL: http://live.gnome.org/LibSoup
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2008-02-23 09:28:40 +01:00
# Packager: Matt Housh, jaeger at morpheus dot net
2016-03-08 05:09:12 +01:00
# Depends on: glib-networking libxml2 sqlite3 gobject-introspection
# Optional: vala
## gobject-introspection is optional but required for webkitgtk
2008-02-23 09:28:40 +01:00
name=libsoup
version=2.52.2
2016-03-08 05:09:12 +01:00
release=3
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
2008-02-23 09:28:40 +01:00
build() {
2009-05-10 08:30:48 +02:00
cd $name-$version
2008-02-23 09:28:40 +01:00
2016-03-08 05:09:12 +01:00
local VALA
if [ "$(pkginfo -i | grep '^vala ')" ]; then
VALA='--enable-vala=yes'
else
VALA='--enable-vala=no'
fi
2008-02-23 09:28:40 +01:00
2016-03-08 05:09:12 +01:00
./configure --prefix=/usr $VALA
2008-02-23 09:28:40 +01:00
make
make DESTDIR=$PKG install
2012-11-02 09:40:46 +01:00
rm -r $PKG/usr/share/{locale,gtk-doc}
2008-02-23 09:28:40 +01:00
}