wok annotate harfbuzz-icu/receipt @ rev 22539
updated bird (2.0.3 -> 2.0.7)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jan 03 16:08:36 2020 +0100 (2020-01-03) |
parents | 593dbe25f7d7 |
children | 194d28e90087 |
rev | line source |
---|---|
pascal@18356 | 1 # SliTaz package receipt. |
pascal@18356 | 2 |
pascal@18356 | 3 PACKAGE="harfbuzz-icu" |
Hans-G?nter@21026 | 4 VERSION="2.3.1" |
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" |
Hans-G?nter@21026 | 9 WEB_SITE="https://www.freedesktop.org/wiki/Software/HarfBuzz" |
Hans-G?nter@21026 | 10 |
Hans-G?nter@21026 | 11 SOURCE="harfbuzz" |
pascal@18357 | 12 TARBALL="$SOURCE-$VERSION.tar.bz2" |
Hans-G?nter@21026 | 13 WGET_URL="https://www.freedesktop.org/software/$SOURCE/release/$TARBALL" |
Hans-G?nter@21026 | 14 |
Hans-G?nter@21026 | 15 DEPENDS="freetype glib icu" |
Hans-G?nter@21026 | 16 BUILD_DEPENDS="freetype-dev glib-dev icu-dev" |
pascal@18356 | 17 PROVIDE="harfbuzz" |
pascal@18356 | 18 |
pascal@18356 | 19 # Rules to configure and make the package. |
pascal@18356 | 20 compile_rules() |
pascal@18356 | 21 { |
Hans-G?nter@21026 | 22 ./configure \ |
Hans-G?nter@21026 | 23 --with-freetype \ |
Hans-G?nter@21026 | 24 --with-glib \ |
Hans-G?nter@21026 | 25 --with-gobject \ |
Hans-G?nter@21026 | 26 --with-icu=yes \ |
pascal@18356 | 27 $CONFIGURE_ARGS && |
Hans-G?nter@21026 | 28 make -j 1 && |
Hans-G?nter@21026 | 29 make install |
pascal@18356 | 30 } |
pascal@18356 | 31 |
pascal@18356 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@18356 | 33 genpkg_rules() |
pascal@18356 | 34 { |
pascal@18356 | 35 mkdir -p $fs/usr/lib |
Hans-G?nter@21026 | 36 |
Hans-G?nter@21026 | 37 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21026 | 38 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@18356 | 39 } |