blob: e7227615949aa825fc6735556da7c1899ad1386e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Plugin pour thunar sous Xfce4
# URL: http://foo-projects.org/~benny/projects/thunar-archive-plugin/index.html
# Maintainer: NuTyX core team
# Packager: fred.galusik at gmail dot com
# Depends on: thunar, xarchiver
name=thunar-archive-plugin
version=0.2.4
release=8
source=(http://download.berlios.de/xfce-goodies/$name-$version.tar.bz2 )
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib/xfce4 \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-static=no
make
make DESTDIR=$PKG install
}
|