summaryrefslogtreecommitdiff
path: root/community/dee/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/dee/PKGBUILD')
-rw-r--r--community/dee/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community/dee/PKGBUILD b/community/dee/PKGBUILD
new file mode 100644
index 000000000..a116b0f00
--- /dev/null
+++ b/community/dee/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 69804 2012-04-23 09:46:49Z ibiru $
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=dee
+pkgver=1.0.10
+pkgrel=1
+pkgdesc="Library to provide objects allowing to create Model-View-Controller type programs across DBus"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/dee"
+license=('LGPL')
+depends=('glib2' 'icu')
+makedepends=('python2' 'gobject-introspection' 'vala')
+options=('!libtool')
+source=(http://launchpad.net/$pkgname/1.0/$pkgver/+download/$pkgname-$pkgver.tar.gz)
+md5sums=('17b715147e1721ce9624557949408d15')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-static --disable-tests \
+ PYTHON=python2
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+}