wok view gtk-engines/receipt @ rev 18400

open-vm-tools: missing deps
author Nathan Neulinger <nneul@neulinger.org>
date Sat Sep 19 03:36:38 2015 +0000 (2015-09-19)
parents
children 40fab26c175d
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk-engines"
4 VERSION="2.20.2"
5 CATEGORY="gnome"
6 SHORT_DESC="All standart GTK+2 engines for themes"
7 MAINTAINER="psychomaniak@xakep.ru"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://linuxfromscratch.org/blfs/view/svn/x/gtk-engines.html"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:4}/$TARBALL"
13 DEPENDS="gtk+ xorg-libXdamage"
14 BUILD_DEPENDS="pkg-config file gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 cp -a $install/* $fs && rm -rf $fs/usr/share/locale
26 rm $fs/usr/lib/gtk-2.0/2.10.0/engines/*.la
27 cd $fs/usr/share/$PACKAGE ; sed -i '/lang/d' *
29 # This clearlooks is 5(!) years newer (+~100Kb)
30 # but there are bugs with default slitaz gtk themes
31 find $fs -regex '.*\(clearlooks\|Clearlooks\).*' \
32 -exec ls -l {} \; -delete
33 }