2011-09-29 10:35:27 +02:00
|
|
|
# Template file for 'rest'
|
|
|
|
pkgname=rest
|
2013-09-26 18:59:18 +02:00
|
|
|
version=0.7.90
|
2014-02-16 08:58:36 +01:00
|
|
|
revision=2
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2014-02-16 08:58:36 +01:00
|
|
|
configure_args="--disable-static --with-ca-certificates=/etc/ssl/certs/ca-certificates.crt"
|
|
|
|
hostmakedepends="libtool pkg-config glib-devel"
|
|
|
|
makedepends="libglib-devel libsoup-gnome-devel>=2.44 libxml2-devel ca-certificates"
|
|
|
|
depends="libsoup-gnome>=2.44 ca-certificates"
|
2011-09-29 10:35:27 +02:00
|
|
|
short_desc="RESTful library"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-10-27 19:50:46 +02:00
|
|
|
license="GPL-2"
|
2012-10-11 11:13:25 +02:00
|
|
|
homepage="http://www.gnome.org"
|
|
|
|
distfiles="${GNOME_SITE}/$pkgname/0.7/$pkgname-$version.tar.xz"
|
2013-09-26 18:59:18 +02:00
|
|
|
checksum=1d682acaac4d946cc7c98a2dd9d65a8c83a6fdb8ca6759e70b8b5042fe66c022
|
2014-02-16 08:58:36 +01:00
|
|
|
|
|
|
|
# Package build options
|
|
|
|
build_options="gir"
|
|
|
|
desc_option_gir="Enable support for building gobject introspection data"
|
|
|
|
|
|
|
|
# Disable gir for cross builds.
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
|
|
build_options_default="gir"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$build_option_gir" ]; then
|
|
|
|
configure_args+=" --enable-introspection"
|
|
|
|
makedepends+=" gobject-introspection"
|
|
|
|
else
|
|
|
|
configure_args+=" --disable-introspection"
|
|
|
|
fi
|
|
|
|
|
|
|
|
pre_configure() {
|
|
|
|
libtoolize -f
|
|
|
|
}
|
2013-04-14 11:53:56 +02:00
|
|
|
|
|
|
|
rest-devel_package() {
|
2014-02-16 08:58:36 +01:00
|
|
|
depends="libglib-devel libsoup-devel>=2.44 libxml2-devel rest>=${version}_${revision}"
|
2013-09-26 18:59:18 +02:00
|
|
|
short_desc+=" - development files"
|
2013-04-14 11:53:56 +02:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
|
|
|
vmove usr/share
|
2013-09-26 18:59:18 +02:00
|
|
|
vmove "usr/lib/*.so"
|
2013-04-14 11:53:56 +02:00
|
|
|
}
|
|
|
|
}
|