wok rev 16149

Add harfbuzz (OpenType text shaping engine)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 26 23:24:26 2014 +0100 (2014-03-26)
parents bd8c59a9d7f1
children 62fd9cdd3423
files harfbuzz-dev/receipt harfbuzz/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/harfbuzz-dev/receipt	Wed Mar 26 23:24:26 2014 +0100
     1.3 @@ -0,0 +1,19 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="harfbuzz-dev"
     1.7 +VERSION="0.9.27"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="harfbuzz development files"
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +LICENSE="GPL2"
    1.12 +WANTED="harfbuzz"
    1.13 +WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
    1.14 +
    1.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.16 +genpkg_rules()
    1.17 +{
    1.18 +	mkdir -p $fs/usr/lib
    1.19 +	cp -a $install/usr/include $fs/usr
    1.20 +	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.21 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.22 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/harfbuzz/receipt	Wed Mar 26 23:24:26 2014 +0100
     2.3 @@ -0,0 +1,37 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="harfbuzz"
     2.7 +VERSION="0.9.27"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="OpenType text shaping engine"
    2.10 +MAINTAINER="pankso@slitaz.org"
    2.11 +LICENSE="GPL2"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.13 +WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
    2.14 +WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL"
    2.15 +
    2.16 +DEPENDS="glib freetype cairo icu"
    2.17 +BUILD_DEPENDS="glib-dev freetype-dev cairo-dev icu-dev"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	#--with-graphite2
    2.23 +	./configure \
    2.24 +		--with-glib \
    2.25 +		--with-freetype \
    2.26 +		--with-cairo \
    2.27 +		--with-icu \
    2.28 +		--with-gobject \
    2.29 +		$CONFIGURE_ARGS && 
    2.30 +	make && make install
    2.31 +}
    2.32 +
    2.33 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.34 +genpkg_rules()
    2.35 +{
    2.36 +	mkdir -p $fs/usr/lib
    2.37 +	cp -a $install/usr/bin $fs/usr
    2.38 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.39 +}
    2.40 +