blob: 4efefa8da56adf839fabe50fba816cdc4f7c2ee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Plugin pour thunar sous Xfce4
# URL: http://users.xfce.org/~benny/projects/thunar-archive-plugin/
# Maintainer: NuTyX core team
# Packager: tnut at nutyx dot com
# Depends on: thunar, xarchiver, xfce4-dev-tools
# Run on: thunar,xarchiver
name=thunar-archive-plugin
version=0.3.0
release=1
source=(http://nutyx.meticul.eu/files/$name-$version.tar.bz2 )
build() {
cd thunar-archive-plugin-thunar-archive-plugin-$version
sh autogen.sh
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/xfce4 \
--localstatedir=/var \
--enable-static=no
make
make DESTDIR=$PKG install
}
|