wok-current annotate harfbuzz-icu/receipt @ rev 18356
Add harfbuzz-icu (depend on icu: 28.6M !)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Sep 14 17:40:52 2015 +0200 (2015-09-14) |
parents | |
children | 593dbe25f7d7 |
rev | line source |
---|---|
pascal@18356 | 1 # SliTaz package receipt. |
pascal@18356 | 2 |
pascal@18356 | 3 PACKAGE="harfbuzz-icu" |
pascal@18356 | 4 VERSION="1.0.3" |
pascal@18356 | 5 CATEGORY="system-tools" |
pascal@18356 | 6 SHORT_DESC="OpenType text shaping engine with icu support" |
pascal@18356 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@18356 | 8 LICENSE="GPL2" |
pascal@18356 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@18356 | 10 WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz" |
pascal@18356 | 11 WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL" |
pascal@18356 | 12 PROVIDE="harfbuzz" |
pascal@18356 | 13 |
pascal@18356 | 14 DEPENDS="glib freetype icu" |
pascal@18356 | 15 BUILD_DEPENDS="glib-dev freetype-dev icu-dev" |
pascal@18356 | 16 |
pascal@18356 | 17 # Rules to configure and make the package. |
pascal@18356 | 18 compile_rules() |
pascal@18356 | 19 { |
pascal@18356 | 20 ./configure \ |
pascal@18356 | 21 --with-glib \ |
pascal@18356 | 22 --with-freetype \ |
pascal@18356 | 23 --with-gobject \ |
pascal@18356 | 24 --with-icu=yes \ |
pascal@18356 | 25 $CONFIGURE_ARGS && |
pascal@18356 | 26 make && make install |
pascal@18356 | 27 } |
pascal@18356 | 28 |
pascal@18356 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@18356 | 30 genpkg_rules() |
pascal@18356 | 31 { |
pascal@18356 | 32 mkdir -p $fs/usr/lib |
pascal@18356 | 33 cp -a $install/usr/bin $fs/usr |
pascal@18356 | 34 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@18356 | 35 } |