blob: 8cb3d25c5e6f47d4dcfceef5d45010510437c150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Gestion des médias amovibles pour Thunar
# URL: http://goodies.xfce.org/projects/thunar-plugins/thunar-volman/
# Maintainer: NuTyX core team
# Packager: fred.galusik at gmail dot com
# Depends on: dbus-glib, hal, thunar
name=thunar-volman
version=0.3.80
release=2
source=(http://goodies.xfce.org/releases/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib/xfce4 \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static
make
make DESTDIR=$PKG install
}
|