wok-next view harfbuzz-icu/receipt @ rev 18356

Add harfbuzz-icu (depend on icu: 28.6M !)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 14 17:40:52 2015 +0200 (2015-09-14)
parents
children 593dbe25f7d7
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz-icu"
4 VERSION="1.0.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="OpenType text shaping engine with icu support"
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"
12 PROVIDE="harfbuzz"
14 DEPENDS="glib freetype icu"
15 BUILD_DEPENDS="glib-dev freetype-dev icu-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --with-glib \
22 --with-freetype \
23 --with-gobject \
24 --with-icu=yes \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }