wok view harfbuzz/receipt @ rev 20891

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 26 08:20:18 2019 +0100 (2019-02-26)
parents c460585add2a
children e23654a687fe
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz"
4 VERSION="1.2.7"
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/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="https://www.freedesktop.org/software/harfbuzz/release/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="glib cairo freetype libffi pcre"
15 BUILD_DEPENDS="glib-dev cairo-dev fontconfig-dev freetype-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --with-glib \
22 --with-freetype \
23 --with-gobject \
24 --with-icu=no \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 #cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }