# HG changeset patch # User Pascal Bellard # Date 1442245252 -7200 # Node ID d0f2ba6f5d61329f3c9f4220bd2e77c9ff8b81c0 # Parent b63f49cad2a3dec0bdc81addcfe19791c060a3ea Add harfbuzz-icu (depend on icu: 28.6M !) diff -r b63f49cad2a3 -r d0f2ba6f5d61 harfbuzz-dev/receipt --- a/harfbuzz-dev/receipt Mon Sep 14 12:13:40 2015 -0300 +++ b/harfbuzz-dev/receipt Mon Sep 14 17:40:52 2015 +0200 @@ -6,8 +6,8 @@ SHORT_DESC="harfbuzz development files" MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz" WANTED="harfbuzz" -WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r b63f49cad2a3 -r d0f2ba6f5d61 harfbuzz-icu/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/harfbuzz-icu/receipt Mon Sep 14 17:40:52 2015 +0200 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="harfbuzz-icu" +VERSION="1.0.3" +CATEGORY="system-tools" +SHORT_DESC="OpenType text shaping engine with icu support" +MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz" +WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL" +PROVIDE="harfbuzz" + +DEPENDS="glib freetype icu" +BUILD_DEPENDS="glib-dev freetype-dev icu-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --with-glib \ + --with-freetype \ + --with-gobject \ + --with-icu=yes \ + $CONFIGURE_ARGS && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib +} diff -r b63f49cad2a3 -r d0f2ba6f5d61 harfbuzz/receipt --- a/harfbuzz/receipt Mon Sep 14 12:13:40 2015 -0300 +++ b/harfbuzz/receipt Mon Sep 14 17:40:52 2015 +0200 @@ -10,8 +10,8 @@ WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz" WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL" -DEPENDS="glib freetype icu" -BUILD_DEPENDS="glib-dev freetype-dev icu-dev" +DEPENDS="glib freetype" +BUILD_DEPENDS="glib-dev freetype-dev" # Rules to configure and make the package. compile_rules() @@ -20,6 +20,7 @@ --with-glib \ --with-freetype \ --with-gobject \ + --with-icu=no \ $CONFIGURE_ARGS && make && make install }