contrib/libsoup/Pkgfile

31 lines
749 B
Plaintext
Raw Normal View History

2008-02-23 09:28:40 +01:00
# Description: HTTP library implementation in C.
2017-01-28 08:07:09 +01:00
# URL: https://wiki.gnome.org/action/show/Projects/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
2017-01-28 08:07:09 +01:00
# Depends on: glib-networking gobject-introspection krb5 libxml2
2016-03-08 05:09:12 +01:00
# Optional: vala
## gobject-introspection is optional but required for webkitgtk
2008-02-23 09:28:40 +01:00
name=libsoup
2017-01-01 09:12:35 +01:00
version=2.56.0
release=1
2017-01-28 08:07:09 +01:00
source=(https://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
}