mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-03 07:42:10 +01:00
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=rest
|
|
pkgver=0.8.0
|
|
pkgrel=0
|
|
pkgdesc="A library for access to RESTful web services"
|
|
url="http://www.gnome.org"
|
|
arch="all"
|
|
license="LGPL2+"
|
|
depends=""
|
|
depends_dev="libsoup-dev gobject-introspection-dev"
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://ftp.gnome.org/pub/gnome/sources/rest/${pkgver%.*}/rest-$pkgver.tar.xz"
|
|
|
|
_builddir="$srcdir"/rest-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--disable-static \
|
|
--enable-introspection \
|
|
--without-gnome \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="07ae736561aab03ee9bdd451445926ba rest-0.8.0.tar.xz"
|
|
sha256sums="e7b89b200c1417073aef739e8a27ff2ab578056c27796ec74f5886a5e0dff647 rest-0.8.0.tar.xz"
|
|
sha512sums="dfcfed4196e613ed4415ea04eaa890e47d1d2e6899afdefff3dd7bfed5bcace58724158deb4c0cc7974f9a4493d00d5c0a27415160f2795df81c2210c14a823a rest-0.8.0.tar.xz"
|