mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 03:42:37 +01:00
48 lines
1021 B
Plaintext
48 lines
1021 B
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=rest
|
|
pkgver=0.7.90
|
|
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="639d51e9e9276726db93b1b4c46887f2 rest-0.7.90.tar.xz"
|