25 lines
714 B
Plaintext
25 lines
714 B
Plaintext
# Description: Thunar filemanager plugin to deal with archives
|
|
# URL: http://foo-projects.org/~benny/projects/thunar-archive-plugin
|
|
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
|
|
# Packager: Antonio SJ Musumeci, bile at landofbile dot com
|
|
# Depends on: thunar xarchiver
|
|
# Group: xfce4
|
|
|
|
name=thunar-archive-plugin
|
|
version=0.3.1
|
|
release=1
|
|
source=(http://archive.xfce.org/src/thunar-plugins/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=$(pkg-config --variable prefix thunarx-2) \
|
|
--libexecdir=/usr/lib/thunar \
|
|
--disable-static \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/locale
|
|
}
|