wok view gtk-xfce-engine/receipt @ rev 20355

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
parents d1c17bd2c2bc
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk-xfce-engine"
4 VERSION="2.8.1"
5 CATEGORY="customization"
6 SHORT_DESC="GTK engine for Xfce"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.xfce.org/"
11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev libffi"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
27 cp -a $install/usr/lib $fs/usr
28 cp -a $install/usr/share/ $fs/usr/
30 find $fs/usr/lib -name "*.la" -exec rm -f {} \;
31 }