wok view harfbuzz/receipt @ rev 17565

Up: harfbuzz 0.9.38
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 07 17:16:29 2015 +0000 (2015-02-07)
parents 3f6b441ff0f4
children 35676b050f78
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz"
4 VERSION="0.9.38"
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"
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 }