wok annotate harfbuzz-icu/receipt @ rev 20880

updated emerald and emerald-themes (0.8.12.1 -> 0.8.14)
author Hans-G?nter Theisgen
date Sun Feb 24 17:33:44 2019 +0100 (2019-02-24)
parents d0f2ba6f5d61
children e23654a687fe
rev   line source
pascal@18356 1 # SliTaz package receipt.
pascal@18356 2
pascal@18356 3 PACKAGE="harfbuzz-icu"
pascal@18357 4 SOURCE="harfbuzz"
pascal@18356 5 VERSION="1.0.3"
pascal@18356 6 CATEGORY="system-tools"
pascal@18356 7 SHORT_DESC="OpenType text shaping engine with icu support"
pascal@18356 8 MAINTAINER="pankso@slitaz.org"
pascal@18356 9 LICENSE="GPL2"
pascal@18357 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@18356 11 WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
pascal@18356 12 WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL"
pascal@18356 13 PROVIDE="harfbuzz"
pascal@18356 14
pascal@18356 15 DEPENDS="glib freetype icu"
pascal@18356 16 BUILD_DEPENDS="glib-dev freetype-dev icu-dev"
pascal@18356 17
pascal@18356 18 # Rules to configure and make the package.
pascal@18356 19 compile_rules()
pascal@18356 20 {
pascal@18356 21 ./configure \
pascal@18356 22 --with-glib \
pascal@18356 23 --with-freetype \
pascal@18356 24 --with-gobject \
pascal@18356 25 --with-icu=yes \
pascal@18356 26 $CONFIGURE_ARGS &&
pascal@18356 27 make && make install
pascal@18356 28 }
pascal@18356 29
pascal@18356 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18356 31 genpkg_rules()
pascal@18356 32 {
pascal@18356 33 mkdir -p $fs/usr/lib
pascal@18356 34 cp -a $install/usr/bin $fs/usr
pascal@18356 35 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@18356 36 }