diff options
Diffstat (limited to 'community/system-tools-backends/PKGBUILD')
-rw-r--r-- | community/system-tools-backends/PKGBUILD | 35 |
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/" +} |