wok-current annotate harfbuzz/receipt @ rev 22587
updated celestia (1.6.0 -> 1.6.1)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jan 07 14:57:50 2020 +0100 (2020-01-07) |
parents | 33da78f5fc46 |
children | 194d28e90087 |
rev | line source |
---|---|
pankso@16149 | 1 # SliTaz package receipt. |
pankso@16149 | 2 |
pankso@16149 | 3 PACKAGE="harfbuzz" |
Hans-G?nter@21026 | 4 VERSION="2.3.1" |
pankso@16149 | 5 CATEGORY="system-tools" |
Hans-G?nter@21026 | 6 SHORT_DESC="OpenType text shaping engine." |
pankso@16149 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@16149 | 8 LICENSE="GPL2" |
al@19306 | 9 WEB_SITE="https://www.freedesktop.org/wiki/Software/HarfBuzz/" |
Hans-G?nter@21026 | 10 |
pankso@16149 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
Hans-G?nter@21026 | 12 WGET_URL="https://www.freedesktop.org/software/$PACKAGE/release/$TARBALL" |
Hans-G?nter@21026 | 13 |
Hans-G?nter@21026 | 14 DEPENDS="cairo freetype glib libffi pcre" |
Hans-G?nter@21026 | 15 BUILD_DEPENDS="cairo-dev fontconfig-dev freetype-dev glib-dev" |
pascal@19088 | 16 HOST_ARCH="i486 arm" |
pankso@16149 | 17 |
pankso@16149 | 18 # Rules to configure and make the package. |
pankso@16149 | 19 compile_rules() |
pankso@16149 | 20 { |
Hans-G?nter@21026 | 21 ./configure \ |
Hans-G?nter@21026 | 22 --with-freetype \ |
Hans-G?nter@21026 | 23 --with-glib \ |
Hans-G?nter@21026 | 24 --with-gobject \ |
Hans-G?nter@21026 | 25 --with-icu=no \ |
al@19306 | 26 $CONFIGURE_ARGS && |
Hans-G?nter@21026 | 27 make -j 1 && |
Hans-G?nter@21026 | 28 make install |
pankso@16149 | 29 } |
pankso@16149 | 30 |
pankso@16149 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@16149 | 32 genpkg_rules() |
pankso@16149 | 33 { |
pankso@16149 | 34 mkdir -p $fs/usr/lib |
Hans-G?nter@21026 | 35 |
Hans-G?nter@21026 | 36 #cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21026 | 37 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@16149 | 38 } |