mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-21 07:42:21 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
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.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"
|