wok view harfbuzz/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents 99ad99a3ac5e
children 1f3d28dd05d0
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz"
4 VERSION="1.0.3"
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"
14 BUILD_DEPENDS="glib-dev freetype-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --with-glib \
21 --with-freetype \
22 --with-gobject \
23 --with-icu=no \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }