xfce/thunar/Pkgfile
Leo Unglaub ad9ec23e6d thunar: cleanup the Pkgfile
Signed-off-by: Leo Unglaub <leo@leo-unglaub.net>
2015-03-04 00:01:31 +00:00

46 lines
1.0 KiB
Plaintext

# Description: Thunar is a new modern file manager for XFCE
# URL: http://docs.xfce.org/xfce/thunar/start
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
# Packager: Juergen Daubert, juergen dot daubert at t-online dot de
# Depends on: xfce4-panel libpng gudev shared-mime-info tumbler polkit
# Group: xfce4
name=thunar
version=1.6.6
release=1
source=(http://archive.xfce.org/src/xfce/$name/${version%.*}/Thunar-$version.tar.bz2)
build ()
{
# go into the source directory
cd $SRC/Thunar-$version
# configure thunar
./configure \
--prefix=/usr \
--mandir=/usr/man \
--libexecdir=/usr/lib/thunar \
--disable-nls \
--disable-static \
--disable-debug \
--disable-dependency-tracking \
--enable-dbus \
--enable-gudev \
--enable-tpa-plugin \
--enable-uca-plugin \
--enable-sbr-plugin \
--enable-wallpaper-plugin \
# make thunar
make
make DESTDIR=$PKG install
# get rid of some stuff we dont need
rm -rf $PKG/usr/share/{locale,doc,gtk-doc}
find $PKG/usr/share -type f -name '*.desktop' \
-exec sed -r '/\[.+\]=/d' -i {} \;
}