diff options
author | root <root@rshg054.dnsready.net> | 2012-04-30 00:01:38 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-04-30 00:01:38 +0000 |
commit | b7cd4b184f75d3d2b54b356e08f296df3a9afb38 (patch) | |
tree | dc5e84c1f7271cf0c8ec0221b5a22e48a884081a /testing/thunar-volman | |
parent | 4412991f6b4fd655fc1f51f8d79a0be0c10158b7 (diff) |
Mon Apr 30 00:01:38 UTC 2012
Diffstat (limited to 'testing/thunar-volman')
-rw-r--r-- | testing/thunar-volman/PKGBUILD | 38 | ||||
-rw-r--r-- | testing/thunar-volman/thunar-volman.install | 13 |
2 files changed, 51 insertions, 0 deletions
diff --git a/testing/thunar-volman/PKGBUILD b/testing/thunar-volman/PKGBUILD new file mode 100644 index 000000000..325e964f9 --- /dev/null +++ b/testing/thunar-volman/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 157647 2012-04-29 02:53:47Z foutrelis $ +# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> +# Contributor: Tobias Kieslich <tobias (at) archlinux.org> + +pkgname=thunar-volman +pkgver=0.8.0 +pkgrel=1 +pkgdesc="Automatic management of removeable devices in Thunar" +arch=('i686' 'x86_64') +url="http://foo-projects.org/~benny/projects/thunar-volman" +license=('GPL2') +groups=('xfce4') +depends=('thunar' 'libxfce4ui' 'hicolor-icon-theme') +makedepends=('intltool') +options=('!libtool') +install=$pkgname.install +source=(http://archive.xfce.org/src/apps/$pkgname/0.8/$pkgname-$pkgver.tar.bz2) +sha256sums=('ff0887c862b578580d05f4cd7db66081382ff143f9cc7ea3c9ba58cf5d02bceb') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/xfce4 \ + --localstatedir=/var \ + --disable-static \ + --disable-debug + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: diff --git a/testing/thunar-volman/thunar-volman.install b/testing/thunar-volman/thunar-volman.install new file mode 100644 index 000000000..e4f8fd06c --- /dev/null +++ b/testing/thunar-volman/thunar-volman.install @@ -0,0 +1,13 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim:set ts=2 sw=2 et: |