xfce/tumbler/Pkgfile
Leo Unglaub 6a07fe4b64 tumbler: Cleaning the Pkgfile
With this commit i also removed gstreamer* support
from the .footprint. It was not in there as a
dependency and just luck if ./configure found it anyway.

Signed-off-by: Leo Unglaub <leo@leo-unglaub.net>
2015-03-04 02:18:30 +00:00

36 lines
815 B
Plaintext

# Description: Tumbler is a D-Bus service for applications to request thumbnails
# URL: http://git.xfce.org/xfce/tumbler/tree/README
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on: dbus-glib gdk-pixbuf freetype libpng libjpeg-turbo intltool
# Group: xfce4
name=tumbler
version=0.1.31
release=1
source=(http://archive.xfce.org/src/xfce/$name/${version%.*}/$name-$version.tar.bz2)
build () {
# go into the source directory
cd $SRC/$name-$version
# configure tumbler
./configure \
--prefix=/usr \
--disable-nls \
--disable-dependency-tracking \
--disable-gtk-doc \
--disable-gstreamer-thumbnailer \
# make tumbler
make
make DESTDIR=$PKG install
# remove some stuff we dont need
rm -rf $PKG/usr/share/{gtk-doc,locale}
}