wok-current annotate harfbuzz-icu/receipt @ rev 24257
updated perl-test-nowarnings (1.04 -> 1.06)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 10:05:21 2022 +0100 (2022-01-02) |
parents | e23654a687fe |
children | af8d823a3077 |
rev | line source |
---|---|
pascal@18356 | 1 # SliTaz package receipt. |
pascal@18356 | 2 |
pascal@18356 | 3 PACKAGE="harfbuzz-icu" |
Hans-G?nter@22922 | 4 VERSION="2.6.4" |
pascal@18356 | 5 CATEGORY="system-tools" |
Hans-G?nter@22922 | 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" |
Hans-G?nter@22922 | 12 TARBALL="$SOURCE-$VERSION.tar.xz" |
Hans-G?nter@21026 | 13 WGET_URL="https://www.freedesktop.org/software/$SOURCE/release/$TARBALL" |
Hans-G?nter@21026 | 14 |
pascal@18356 | 15 PROVIDE="harfbuzz" |
Hans-G?nter@22922 | 16 DEPENDS="freetype gcc83-lib-base glib icu" |
Hans-G?nter@22922 | 17 BUILD_DEPENDS="freetype-dev gcc83 glib-dev icu-dev" |
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@22922 | 23 CC=gcc-83 \ |
Hans-G?nter@22922 | 24 CXX=g++-83 \ |
Hans-G?nter@21026 | 25 --with-freetype \ |
Hans-G?nter@21026 | 26 --with-glib \ |
Hans-G?nter@21026 | 27 --with-gobject \ |
Hans-G?nter@21026 | 28 --with-icu=yes \ |
pascal@18356 | 29 $CONFIGURE_ARGS && |
Hans-G?nter@21026 | 30 make -j 1 && |
Hans-G?nter@21026 | 31 make install |
pascal@18356 | 32 } |
pascal@18356 | 33 |
pascal@18356 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@18356 | 35 genpkg_rules() |
pascal@18356 | 36 { |
pascal@18356 | 37 mkdir -p $fs/usr/lib |
Hans-G?nter@21026 | 38 |
Hans-G?nter@21026 | 39 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21026 | 40 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@18356 | 41 } |