6a07fe4b64
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>
36 lines
815 B
Plaintext
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}
|
|
}
|