summaryrefslogtreecommitdiff
path: root/testing/accountsservice/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/accountsservice/PKGBUILD')
-rw-r--r--testing/accountsservice/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/accountsservice/PKGBUILD b/testing/accountsservice/PKGBUILD
new file mode 100644
index 000000000..b922cee69
--- /dev/null
+++ b/testing/accountsservice/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 156530 2012-04-20 13:55:19Z heftig $
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+
+pkgname=accountsservice
+pkgver=0.6.18
+pkgrel=1
+pkgdesc="D-Bus interface for user account query and manipulation"
+arch=(i686 x86_64)
+url="http://cgit.freedesktop.org/accountsservice/"
+license=('GPL3')
+depends=('glib2' 'polkit' 'libsystemd')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+options=('!libtool')
+source=(http://cgit.freedesktop.org/accountsservice/snapshot/${pkgname}-${pkgver}.tar.xz)
+md5sums=('31bc335f7d96b88e0d572a67a9df063d')
+
+build() {
+ cd $pkgname-$pkgver
+ ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+ --libexecdir=/usr/lib/accountsservice \
+ --with-systemdsystemunitdir=/usr/lib/systemd/system \
+ --localstatedir=/var --disable-static
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: