summaryrefslogtreecommitdiff
path: root/testing/rest/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/rest/PKGBUILD')
-rw-r--r--testing/rest/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/rest/PKGBUILD b/testing/rest/PKGBUILD
new file mode 100644
index 000000000..e21b8d110
--- /dev/null
+++ b/testing/rest/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 169158 2012-10-18 19:22:47Z jgc $
+# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
+
+pkgname=rest
+pkgver=0.7.90
+pkgrel=1
+pkgdesc="A helper library for RESTful services."
+arch=('i686' 'x86_64')
+url="http://www.gtk.org/"
+license=('GPL2')
+depends=('glib2' 'libxml2' 'libsoup-gnome')
+makedepends=('gobject-introspection')
+options=('!libtool')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz)
+sha256sums=('1d682acaac4d946cc7c98a2dd9d65a8c83a6fdb8ca6759e70b8b5042fe66c022')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et: