wok view harfbuzz/receipt @ rev 23845

updated qterminal (0.5.0 -> 0.6.0)
author Hans-G?nter Theisgen
date Sat Jun 13 14:04:13 2020 +0100 (2020-06-13)
parents 194d28e90087
children 3cdc90c472a2
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 export LDFLAGS="$LDFLAGS -lstdc++"
24 ./configure \
25 CC=gcc-83 \
26 CXX=g++-83 \
27 --with-freetype \
28 --with-glib \
29 --with-gobject \
30 --with-icu=no \
31 $CONFIGURE_ARGS &&
32 make -j 1 &&
33 make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/lib
41 #cp -a $install/usr/bin $fs/usr
42 cp -a $install/usr/lib/*.so* $fs/usr/lib
43 }