# Maintainer: Luis Henrique # Mandatory pkgname=thunar-thumbnailers pkgver=0.4.1 pkgrel=1lm arch=noarch source=("http://people.salixos.org/lmello/pkg/xap/thunar-plugins/thunar-thumbnailers/thunar-thumbnailers-0.4.1.tar.bz2") # Optional docs=("AUTHORS" "COPYING" "ChangeLog" "INSTALL" "NEWS" "README") url="http://goodies.xfce.org" slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "thunar-thumbnailers (additional thumbnailers for Thunar)" "The thunar-thumbnailers project provides additional thumbnailers for" "Thunar, that also cover less common file formats." "" "After installing this package, each user will need to execute the" "following command: /usr/libexec/thunar-vfs-update-thumbnailers-cache-1" ) build() { cd $startdir/src/$pkgname-$pkgver ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ --docdir=/usr/doc/$pkgname-$pkgver \ --enable-static=no \ --enable-shared=yes \ --enable-tex \ --enable-ffmpeg \ --disable-update-mime-database make || return 1 make DESTDIR=$startdir/pkg install } doinst() { # update the mime desktop database if [ -x usr/bin/update-desktop-database ]; then usr/bin/update-desktop-database -q fi # update the mime database if [ -x usr/bin/update-mime-database ]; then usr/bin/update-mime-database usr/share/mime > /dev/null 2>&1 fi }