wok diff harfbuzz/receipt @ rev 16757

Up sshfs-fuse (2.5)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 16 20:36:28 2014 +0200 (2014-06-16)
parents
children 3f6b441ff0f4
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/harfbuzz/receipt	Mon Jun 16 20:36:28 2014 +0200
     1.3 @@ -0,0 +1,37 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="harfbuzz"
     1.7 +VERSION="0.9.27"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="OpenType text shaping engine"
    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 +
    1.16 +DEPENDS="glib freetype cairo icu"
    1.17 +BUILD_DEPENDS="glib-dev freetype-dev cairo-dev icu-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	#--with-graphite2
    1.23 +	./configure \
    1.24 +		--with-glib \
    1.25 +		--with-freetype \
    1.26 +		--with-cairo \
    1.27 +		--with-icu \
    1.28 +		--with-gobject \
    1.29 +		$CONFIGURE_ARGS && 
    1.30 +	make && make install
    1.31 +}
    1.32 +
    1.33 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.34 +genpkg_rules()
    1.35 +{
    1.36 +	mkdir -p $fs/usr/lib
    1.37 +	cp -a $install/usr/bin $fs/usr
    1.38 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.39 +}
    1.40 +