wok annotate pixman/receipt @ rev 22802

freetype: add freetype-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 28 09:23:39 2020 +0100 (2020-01-28)
parents a78610b2eb47
children 5d79829fa876
rev   line source
pankso@831 1 # SliTaz package receipt.
pankso@831 2
pankso@831 3 PACKAGE="pixman"
Hans-G?nter@21684 4 VERSION="0.38.4"
pankso@831 5 CATEGORY="x-window"
Hans-G?nter@21684 6 SHORT_DESC="Pixel-manipulation library for X and Cairo."
pankso@831 7 MAINTAINER="pankso@slitaz.org"
pascal@15021 8 LICENSE="MIT"
Hans-G?nter@21684 9 WEB_SITE="http://pixman.org/"
Hans-G?nter@21684 10
al@14225 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21684 12 WGET_URL="https://cairographics.org/releases/$TARBALL"
pankso@831 13
al@14225 14 DEPENDS="glibc-base"
al@14225 15 BUILD_DEPENDS="libpng-dev"
al@14225 16
Hans-G?nter@21684 17 HOST_ARCH="i486 arm"
Hans-G?nter@21684 18
pankso@831 19 # Rules to configure and make the package.
pankso@831 20 compile_rules()
pankso@831 21 {
Hans-G?nter@21684 22 ./configure \
Hans-G?nter@21684 23 --enable-gtk=no \
Hans-G?nter@21684 24 --enable-libpng \
pankso@12509 25 $CONFIGURE_ARGS &&
al@14225 26 make &&
al@14225 27 make install
pankso@831 28 }
pankso@831 29
pankso@831 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@831 31 genpkg_rules()
pankso@831 32 {
pankso@831 33 mkdir -p $fs/usr/lib
pankso@12509 34 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@831 35 }