wok-next annotate gtk2-engine-murrine/receipt @ rev 15349
freetype: splashutils *needs* static lib
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Sep 30 15:03:13 2013 +0000 (2013-09-30) |
parents | 68d68791ced5 |
children | d3eb5f4b53ea |
rev | line source |
---|---|
al@14269 | 1 # SliTaz package receipt. |
al@14269 | 2 |
al@14269 | 3 PACKAGE="gtk2-engine-murrine" |
al@14269 | 4 VERSION="0.98.2" |
al@14269 | 5 CATEGORY="x-window" |
al@14269 | 6 SHORT_DESC="GTK2 engine to make your desktop look like a murrina" |
al@14269 | 7 MAINTAINER="jozee@slitaz.org" |
pascal@14997 | 8 LICENSE="LGPL3" |
al@14269 | 9 WEB_SITE="http://www.cimitan.com/murrine" |
al@14269 | 10 TARBALL="murrine-$VERSION.tar.xz" |
al@14269 | 11 WGET_URL="$GNOME_MIRROR/murrine/0.98/$TARBALL" |
al@14269 | 12 TAGS="gtk2" |
al@14269 | 13 |
al@14269 | 14 DEPENDS="gtk+" |
al@14269 | 15 BUILD_DEPENDS="gtk+-dev libxml2-dev" |
al@14269 | 16 |
al@14269 | 17 # Rules to configure and make the package. |
al@14269 | 18 compile_rules() |
al@14269 | 19 { |
al@14269 | 20 ./configure \ |
al@14269 | 21 --disable-static \ |
al@14269 | 22 --enable-animation \ |
al@14269 | 23 $CONFIGURE_ARGS && |
al@14269 | 24 make && |
al@14269 | 25 make install |
al@14269 | 26 } |
al@14269 | 27 |
al@14269 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
al@14269 | 29 genpkg_rules() |
al@14269 | 30 { |
al@14269 | 31 mkdir -p $fs/usr |
al@14269 | 32 cp -a $install/usr/lib $fs/usr |
al@14269 | 33 cp -a $install/usr/share $fs/usr |
al@14269 | 34 find $fs -name '*.la' -delete |
al@14269 | 35 } |
al@14269 | 36 |