mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
testing/rest: new aport
A library for access to RESTful web services http://www.gnome.org
This commit is contained in:
parent
4f862527fe
commit
e3a2fbdd7e
44
testing/rest/APKBUILD
Normal file
44
testing/rest/APKBUILD
Normal file
@ -0,0 +1,44 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=rest
|
||||
pkgver=0.7.12
|
||||
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 --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="dc14e0d89d38af5d8d544ce8f124d186 rest-0.7.12.tar.xz"
|
||||
Loading…
x
Reference in New Issue
Block a user