wok view harfbuzz/receipt @ rev 18351

Rebuild packages that depends on giflib & nettle (ldd fail)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sat Sep 12 15:52:07 2015 +0200 (2015-09-12)
parents 35676b050f78
children d0f2ba6f5d61
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz"
4 VERSION="1.0.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="OpenType text shaping engine"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
11 WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL"
13 DEPENDS="glib freetype icu"
14 BUILD_DEPENDS="glib-dev freetype-dev icu-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --with-glib \
21 --with-freetype \
22 --with-gobject \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }