diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gnome-system-tools |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gnome-system-tools')
-rw-r--r-- | community/gnome-system-tools/PKGBUILD | 27 | ||||
-rw-r--r-- | community/gnome-system-tools/gnome-system-tools.install | 15 |
2 files changed, 42 insertions, 0 deletions
diff --git a/community/gnome-system-tools/PKGBUILD b/community/gnome-system-tools/PKGBUILD new file mode 100644 index 000000000..93061628a --- /dev/null +++ b/community/gnome-system-tools/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 27934 2010-09-30 15:07:45Z ibiru $ +# Maintainer : Ionut Biru <ibiru@archlinux.org> +# Contributor: Hugo Doria <hugodoria@archlinux-br.org> + +pkgname=gnome-system-tools +pkgver=2.32.0 +pkgrel=1 +pkgdesc="Gnome System Configuration Utilities" +arch=('i686' 'x86_64') +url="http://www.gnome.org/projects/gst/" +license=('GPL') +options=('!libtool') +depends=('wireless_tools' 'liboobs>=2.32.0' 'nautilus>=2.30.1' 'polkit-gnome>=0.97' 'dconf') +makedepends=('gnome-doc-utils>=0.20.1' 'intltool>=0.40') +install=gnome-system-tools.install +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.32/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('71d52698ccb60bc07d6e4e442b7cb178ebf1152396379500df5ec62da4c4d14a') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-scrollkeeper --disable-static \ + --disable-services --disable-schemas-compile + make + make DESTDIR="${pkgdir}" install +} diff --git a/community/gnome-system-tools/gnome-system-tools.install b/community/gnome-system-tools/gnome-system-tools.install new file mode 100644 index 000000000..25e333a19 --- /dev/null +++ b/community/gnome-system-tools/gnome-system-tools.install @@ -0,0 +1,15 @@ +post_install() { + usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + update-desktop-database -q +} + |