wok view harfbuzz-icu/receipt @ rev 22250

updated xorg-xclock (1.0.6 -> 1.0.9)
author Hans-G?nter Theisgen
date Tue Nov 12 16:43:09 2019 +0100 (2019-11-12)
parents 593dbe25f7d7
children 194d28e90087
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz-icu"
4 VERSION="2.3.1"
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"
11 SOURCE="harfbuzz"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="https://www.freedesktop.org/software/$SOURCE/release/$TARBALL"
15 DEPENDS="freetype glib icu"
16 BUILD_DEPENDS="freetype-dev glib-dev icu-dev"
17 PROVIDE="harfbuzz"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --with-freetype \
24 --with-glib \
25 --with-gobject \
26 --with-icu=yes \
27 $CONFIGURE_ARGS &&
28 make -j 1 &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }