mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
30 lines
655 B
Plaintext
30 lines
655 B
Plaintext
# Description: Thumbnail service implementing the thumbnail management D-Bus specification
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: dbus-glib freetype gdk-pixbuf poppler-glib libxfce4util
|
|
|
|
name=tumbler
|
|
version=4.18.2
|
|
release=2
|
|
source=(http://archive.xfce.org/src/xfce/$name/4.18/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--disable-static \
|
|
--disable-nls \
|
|
--enable-gtk-doc-html=no
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm $PKG/usr/lib/*.la
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
}
|