wok view harfbuzz/receipt @ rev 21174

updated libev and libev-dev (4.04 -> 4.25)
author Hans-G?nter Theisgen
date Mon Apr 01 16:56:17 2019 +0100 (2019-04-01)
parents 33da78f5fc46
children 194d28e90087
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz"
4 VERSION="2.3.1"
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.bz2"
12 WGET_URL="https://www.freedesktop.org/software/$PACKAGE/release/$TARBALL"
14 DEPENDS="cairo freetype glib libffi pcre"
15 BUILD_DEPENDS="cairo-dev fontconfig-dev freetype-dev glib-dev"
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --with-freetype \
23 --with-glib \
24 --with-gobject \
25 --with-icu=no \
26 $CONFIGURE_ARGS &&
27 make -j 1 &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
36 #cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 }