blob: 22796a627d8d6e8fe8524eef7094019674438876 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=rest
pkgver=0.7.93
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/0.7/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="1c276e7808edf8e2e49ed854f741cd40 rest-0.7.93.tar.xz"
sha256sums="c710644455340a44ddc005c645c466f05c0d779993138ea21a62c6082108b216 rest-0.7.93.tar.xz"
sha512sums="50afb6730b8065d418e724c8afdb903521582669fb8744d91f400ebdbdb52323117193d3039ef4320b1bf7e3f60cc19ee6826ff7cb6c9bd680fc1ced067dff3b rest-0.7.93.tar.xz"
|