diff options
Diffstat (limited to 'extra/thunar-vfs/PKGBUILD')
-rw-r--r-- | extra/thunar-vfs/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/extra/thunar-vfs/PKGBUILD b/extra/thunar-vfs/PKGBUILD new file mode 100644 index 000000000..bd2934dbc --- /dev/null +++ b/extra/thunar-vfs/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 106948 2011-01-19 20:20:07Z andyrtr $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: Xavier Devlamynck <magicrhesus@ouranos.be> + +pkgname=thunar-vfs +pkgver=1.2.0 +pkgrel=2 +pkgdesc="Virtual filesystem shipped with the thunar 1.0 and earlier releases" +arch=('i686' 'x86_64') +license=('GPL2') +url="http://www.xfce.org/" +depends=('exo' 'startup-notification' 'hal' 'fam') +makedepends=('intltool') +options=('!libtool') +source=(http://archive.xfce.org/src/xfce/thunar-vfs/1.2/thunar-vfs-$pkgver.tar.bz2) +md5sums=('1fbc55af8ed98174f5c3c7f8daec10cc') + +build() { + cd ${srcdir}/thunar-vfs-${pkgver} + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --enable-startup-notification \ + --enable-dbus \ + --with-volume-manager=hal \ + --disable-debug + make +} + +package() { + cd ${srcdir}/thunar-vfs-${pkgver} + make DESTDIR=${pkgdir} install +} |