23 lines
748 B
Plaintext
23 lines
748 B
Plaintext
# Description: Thunar filemanager plugin to deal with archives
|
|
# URL: http://foo-projects.org/~benny/projects/thunar-archive-plugin
|
|
# Maintainer: Jose V Beneyto, sepen 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.2.4
|
|
release=2
|
|
source=(http://archive.xfce.org/src/thunar-plugins/$name/${version%.*}/$name-$version.tar.bz2 \
|
|
xarchiver.tap)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=$(pkg-config --variable prefix thunarx-1) \
|
|
--libexecdir=/usr/lib/thunar
|
|
make
|
|
make DESTDIR=$PKG install
|
|
install -D -m 0755 $SRC/xarchiver.tap $PKG/usr/lib/thunar/$name/xarchiver.tap
|
|
rm -r $PKG/usr/share/locale
|
|
}
|