summaryrefslogtreecommitdiff
path: root/community/system-tools-backends/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-01-17 03:43:05 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-01-17 03:43:05 +0000
commit953eead14ccfe47904e73cee9cea6e1255f57356 (patch)
tree8727303ca854032eb046995d052805c969755f30 /community/system-tools-backends/PKGBUILD
parentb296a78e1469d58c52acc47586bd5bb84f25fc0f (diff)
Fri Jan 17 03:37:47 UTC 2014
Diffstat (limited to 'community/system-tools-backends/PKGBUILD')
-rw-r--r--community/system-tools-backends/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/community/system-tools-backends/PKGBUILD b/community/system-tools-backends/PKGBUILD
new file mode 100644
index 000000000..49dffb894
--- /dev/null
+++ b/community/system-tools-backends/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 104267 2014-01-16 18:40:20Z flexiondotorg $
+# Maintainer : Ionut Biru <ibiru@archlinux.org>
+# Contributor: Hugo Doria <hugo@archlinux.org>
+# Contributor: Martin Wimpress <code@flexion.org>
+
+pkgname=system-tools-backends
+pkgver=2.10.2
+pkgrel=4
+pkgdesc='Backends for Gnome/MATE System Tools.'
+arch=('i686' 'x86_64')
+url='http://system-tools-backends.freedesktop.org/'
+license=('GPL')
+depends=('dbus-glib' 'perl' 'perl-net-dbus' 'polkit')
+makedepends=('intltool' 'perl-xml-parser')
+source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.10/${pkgname}-${pkgver}.tar.bz2")
+sha256sums=('1dbe5177df46a9c7250735e05e77129fe7ec04840771accfa87690111ca2c670')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --with-dbus-sys=/etc/dbus-1/system.d \
+ --localstatedir=/var \
+ --mandir=/usr/share \
+ --sbindir=/usr/bin \
+ --disable-static
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ #clean up man
+ rm -rf "${pkgdir}/usr/share/system-tools-backends-2.0/modules/share/"
+}