summaryrefslogtreecommitdiff
path: root/testing/thunar-volman/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/thunar-volman/PKGBUILD')
-rw-r--r--testing/thunar-volman/PKGBUILD38
1 files changed, 38 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: