wok-6.x annotate harfbuzz/receipt @ rev 18344
Up: harfbuzz (1.0.3) + add ICU dep
author | Alexander Medvedev <devl547@gmail.com> |
---|---|
date | Fri Sep 11 16:56:37 2015 +0000 (2015-09-11) |
parents | 35676b050f78 |
children | d0f2ba6f5d61 |
rev | line source |
---|---|
pankso@16149 | 1 # SliTaz package receipt. |
pankso@16149 | 2 |
pankso@16149 | 3 PACKAGE="harfbuzz" |
devl547@18344 | 4 VERSION="1.0.3" |
pankso@16149 | 5 CATEGORY="system-tools" |
pankso@16149 | 6 SHORT_DESC="OpenType text shaping engine" |
pankso@16149 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@16149 | 8 LICENSE="GPL2" |
pankso@16149 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@16149 | 10 WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz" |
pankso@16149 | 11 WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL" |
pankso@16149 | 12 |
devl547@18344 | 13 DEPENDS="glib freetype icu" |
devl547@18344 | 14 BUILD_DEPENDS="glib-dev freetype-dev icu-dev" |
pankso@16149 | 15 |
pankso@16149 | 16 # Rules to configure and make the package. |
pankso@16149 | 17 compile_rules() |
pankso@16149 | 18 { |
pankso@16149 | 19 ./configure \ |
pankso@16149 | 20 --with-glib \ |
pankso@16149 | 21 --with-freetype \ |
pankso@16149 | 22 --with-gobject \ |
pankso@16149 | 23 $CONFIGURE_ARGS && |
pankso@16149 | 24 make && make install |
pankso@16149 | 25 } |
pankso@16149 | 26 |
pankso@16149 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@16149 | 28 genpkg_rules() |
pankso@16149 | 29 { |
pankso@16149 | 30 mkdir -p $fs/usr/lib |
pankso@16149 | 31 cp -a $install/usr/bin $fs/usr |
pankso@16149 | 32 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@16149 | 33 } |