wok view harfbuzz-icu/receipt @ rev 23030

created recipe for libfilezilla
author Hans-G?nter Theisgen
date Tue Mar 03 16:57:34 2020 +0100 (2020-03-03)
parents e23654a687fe
children af8d823a3077
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz-icu"
4 VERSION="2.6.4"
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.xz"
13 WGET_URL="https://www.freedesktop.org/software/$SOURCE/release/$TARBALL"
15 PROVIDE="harfbuzz"
16 DEPENDS="freetype gcc83-lib-base glib icu"
17 BUILD_DEPENDS="freetype-dev gcc83 glib-dev icu-dev"
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=yes \
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 }