wok-next annotate fontconfig/receipt @ rev 21445

updated scim (1.4.17 -> 1.4.18)
author Hans-G?nter Theisgen
date Tue May 05 16:55:11 2020 +0100 (2020-05-05)
parents d5aab818505e
children
rev   line source
al@19741 1 # SliTaz package receipt v2.
pankso@21 2
pankso@21 3 PACKAGE="fontconfig"
al@20965 4 VERSION="2.13.1"
pankso@21 5 CATEGORY="x-window"
al@14225 6 SHORT_DESC="Font configuration utilities and library"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15593 8 LICENSE="MIT"
al@19681 9 WEB_SITE="https://www.freedesktop.org/wiki/Software/fontconfig/"
al@20896 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/fontconfig.html"
al@19647 11
al@14225 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@20629 13 WGET_URL="https://www.freedesktop.org/software/fontconfig/release/$TARBALL"
al@21087 14 TARBALL_SHA1="75612356ef4f801735b49baf987f8942b4a7a5e1"
al@14225 15
al@21020 16 BUILD_DEPENDS="gettext-dev libxml2-dev freetype-dev gperf"
al@21020 17 SPLIT="$PACKAGE-dev"
pankso@21 18
al@21087 19 DEPENDS_std="freetype libxml2"
al@21087 20 DEPENDS_dev="$PACKAGE freetype-dev libxml2-dev"
al@21087 21
al@20443 22 compile_rules() {
al@20443 23 rm -f src/fcobjshash.h
al@19798 24
al@20629 25 # aclocal
pankso@3852 26 ./configure \
pankso@10293 27 --with-arch=$ARCH \
al@14225 28 --disable-static \
al@14225 29 --enable-iconv \
al@14225 30 --enable-libxml2 \
al@14225 31 --disable-docs \
pankso@3852 32 $CONFIGURE_ARGS &&
al@20569 33 fix libtool &&
al@14225 34 make &&
al@20629 35 make install
pankso@21 36 }