wok view harfbuzz/receipt @ rev 16700

Up: slitaz-base-files (5.6.3): fix bug with installing coreutils-line package
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon May 26 16:03:09 2014 +0300 (2014-05-26)
parents
children 3f6b441ff0f4
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz"
4 VERSION="0.9.27"
5 CATEGORY="system-tools"
6 SHORT_DESC="OpenType text shaping engine"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
11 WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL"
13 DEPENDS="glib freetype cairo icu"
14 BUILD_DEPENDS="glib-dev freetype-dev cairo-dev icu-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 #--with-graphite2
20 ./configure \
21 --with-glib \
22 --with-freetype \
23 --with-cairo \
24 --with-icu \
25 --with-gobject \
26 $CONFIGURE_ARGS &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }