wok view harfbuzz/receipt @ rev 22922

updated harfbuzz packages (2.3.1 -> 2.6.4)
author Hans-G?nter Theisgen
date Wed Feb 26 07:17:21 2020 +0100 (2020-02-26)
parents e23654a687fe
children f7cfddec74b3
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz"
4 VERSION="2.6.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="OpenType text shaping engine."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/HarfBuzz/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://www.freedesktop.org/software/$PACKAGE/release/$TARBALL"
14 DEPENDS="cairo freetype gcc83-lib-base glib libffi pcre"
15 BUILD_DEPENDS="cairo-dev fontconfig-dev freetype-dev gcc83 glib-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 CC=gcc-83 \
24 CXX=g++-83 \
25 --with-freetype \
26 --with-glib \
27 --with-gobject \
28 --with-icu=no \
29 $CONFIGURE_ARGS &&
30 make -j 1 &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib
39 #cp -a $install/usr/bin $fs/usr
40 cp -a $install/usr/lib/*.so* $fs/usr/lib
41 }