summaryrefslogtreecommitdiffstats
path: root/main/rest/APKBUILD
blob: 44203e45597d381b02d8db9e3195be2f124e6b17 (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
49
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=rest
pkgver=0.7.91
pkgrel=0
pkgdesc="A library for access to RESTful web services"
url="http://www.gnome.org"
arch="all"
license="LGPLv2"
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
	rm -f "$pkgdir"/usr/lib/*.la
}

md5sums="abd6211788b9b8dac432a26767099a27  rest-0.7.91.tar.xz"
sha256sums="838814d935143f2dc99eb79f1ac69c615e7b547339f6cd226dd0ed4d7c16b67a  rest-0.7.91.tar.xz"
sha512sums="3fa63ca2c2b0d2a0bcccdc5cdd2a7b0d55a7e2600c564fe84e638bac4ac3b24d50199c7e65cb0e15946d9f80965165e5f01bc3521e7d797a66ca90e04a31d659  rest-0.7.91.tar.xz"