wok-6.x annotate harfbuzz/receipt @ rev 19158
mesa*: fix build
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Wed May 25 23:07:05 2016 +0200 (2016-05-25) |
parents | 1f3d28dd05d0 |
children | c460585add2a |
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" |
pascal@19088 | 12 HOST_ARCH="i486 arm" |
pankso@16149 | 13 |
psychomaniak@19050 | 14 DEPENDS="glib freetype cairo" |
psychomaniak@19050 | 15 BUILD_DEPENDS="glib-dev freetype-dev cairo-dev" |
pankso@16149 | 16 |
pankso@16149 | 17 # Rules to configure and make the package. |
pankso@16149 | 18 compile_rules() |
pankso@16149 | 19 { |
pankso@16149 | 20 ./configure \ |
pankso@16149 | 21 --with-glib \ |
pankso@16149 | 22 --with-freetype \ |
pankso@16149 | 23 --with-gobject \ |
pascal@18356 | 24 --with-icu=no \ |
pankso@16149 | 25 $CONFIGURE_ARGS && |
pankso@16149 | 26 make && make install |
pankso@16149 | 27 } |
pankso@16149 | 28 |
pankso@16149 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@16149 | 30 genpkg_rules() |
pankso@16149 | 31 { |
pankso@16149 | 32 mkdir -p $fs/usr/lib |
pankso@16149 | 33 cp -a $install/usr/bin $fs/usr |
pankso@16149 | 34 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@16149 | 35 } |