blob: 947731d1f596b1000e900c74bce157e14a78d0b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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' 'mips64el')
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
}
|