wok-current diff harfbuzz-icu/receipt @ rev 18356
Add harfbuzz-icu (depend on icu: 28.6M !)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Sep 14 17:40:52 2015 +0200 (2015-09-14) |
parents | |
children | 593dbe25f7d7 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/harfbuzz-icu/receipt Mon Sep 14 17:40:52 2015 +0200 1.3 @@ -0,0 +1,35 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="harfbuzz-icu" 1.7 +VERSION="1.0.3" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="OpenType text shaping engine with icu support" 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 +WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz" 1.14 +WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL" 1.15 +PROVIDE="harfbuzz" 1.16 + 1.17 +DEPENDS="glib freetype icu" 1.18 +BUILD_DEPENDS="glib-dev freetype-dev icu-dev" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + ./configure \ 1.24 + --with-glib \ 1.25 + --with-freetype \ 1.26 + --with-gobject \ 1.27 + --with-icu=yes \ 1.28 + $CONFIGURE_ARGS && 1.29 + make && make install 1.30 +} 1.31 + 1.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.33 +genpkg_rules() 1.34 +{ 1.35 + mkdir -p $fs/usr/lib 1.36 + cp -a $install/usr/bin $fs/usr 1.37 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.38 +}