summaryrefslogtreecommitdiff
path: root/gnome-unstable/gnome-disk-utility
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-10-03 01:32:13 -0700
committerroot <root@rshg054.dnsready.net>2012-10-03 01:32:13 -0700
commit1350233b6dc1924ba29a42462447995f26dae0dc (patch)
tree5dfb3384023621f023e449f02df1f035a9b45170 /gnome-unstable/gnome-disk-utility
parent941550cbc215d608bd18439f99500b74fbb80f0d (diff)
Wed Oct 3 01:31:01 PDT 2012
Diffstat (limited to 'gnome-unstable/gnome-disk-utility')
-rw-r--r--gnome-unstable/gnome-disk-utility/PKGBUILD30
-rw-r--r--gnome-unstable/gnome-disk-utility/gnome-disk-utility.install13
2 files changed, 43 insertions, 0 deletions
diff --git a/gnome-unstable/gnome-disk-utility/PKGBUILD b/gnome-unstable/gnome-disk-utility/PKGBUILD
new file mode 100644
index 000000000..189d66771
--- /dev/null
+++ b/gnome-unstable/gnome-disk-utility/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 167542 2012-10-02 11:41:39Z jgc $
+# Maintainer: Jan de Groot <jgc@archlinux.org>
+# Contributor: Silvio Knizek (killermoehre)
+
+pkgname=gnome-disk-utility
+pkgver=3.6.0
+pkgrel=1
+pkgdesc="Disk Management Utility for GNOME"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.gnome.org"
+groups=('gnome-extra')
+depends=('gtk3' 'udisks2' 'hicolor-icon-theme' 'libsecret' 'libpwquality' 'desktop-file-utils')
+makedepends=('intltool' 'docbook-xsl')
+options=('!libtool' '!emptydirs')
+install=gnome-disk-utility.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('0e3ccd8ae0f79a8ccc41bfaaf0f34c14fec7b193249e650862c589d82053e57d')
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr --sysconfdir=/etc
+
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
diff --git a/gnome-unstable/gnome-disk-utility/gnome-disk-utility.install b/gnome-unstable/gnome-disk-utility/gnome-disk-utility.install
new file mode 100644
index 000000000..8b17fa3d4
--- /dev/null
+++ b/gnome-unstable/gnome-disk-utility/gnome-disk-utility.install
@@ -0,0 +1,13 @@
+post_install() {
+ glib-compile-schemas /usr/share/glib-2.0/schemas
+ update-desktop-database -q
+ gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}