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

Fix building: pciutils, pcmanfm-legacy, arj
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 13 17:25:31 2017 +0300 (2017-05-13)
parents 593dbe25f7d7
children f463de72afe3
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz-icu"
4 VERSION="1.3.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="OpenType text shaping engine with ICU support"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/HarfBuzz"
10 PROVIDE="harfbuzz"
12 TARBALL="harfbuzz-$VERSION.tar.bz2"
13 WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL"
15 DEPENDS="glib freetype icu"
16 BUILD_DEPENDS="glib-dev freetype-dev icu-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --with-glib \
23 --with-freetype \
24 --with-gobject \
25 --with-icu=yes \
26 $CONFIGURE_ARGS &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cook_copy_files *.so*
34 }