wok view harfbuzz-icu/receipt @ rev 19083

Add themes from the Shimmer Project that fit GTK+2/3 at the same time
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 29 17:46:17 2016 +0300 (2016-04-29)
parents d0f2ba6f5d61
children e23654a687fe
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz-icu"
4 SOURCE="harfbuzz"
5 VERSION="1.0.3"
6 CATEGORY="system-tools"
7 SHORT_DESC="OpenType text shaping engine with icu support"
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
12 WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL"
13 PROVIDE="harfbuzz"
15 DEPENDS="glib freetype icu"
16 BUILD_DEPENDS="glib-dev freetype-dev icu-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --with-glib \
23 --with-freetype \
24 --with-gobject \
25 --with-icu=yes \
26 $CONFIGURE_ARGS &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }