wok annotate freetype/receipt @ rev 14231

freetype: remove wrong error trigger (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 22 08:07:46 2013 +0100 (2013-03-22)
parents a820a23202dd
children 7bb096863642
rev   line source
pankso@21 1 # SliTaz package receipt.
pankso@21 2
pankso@21 3 PACKAGE="freetype"
al@14225 4 VERSION="2.4.11"
pankso@21 5 CATEGORY="x-window"
pankso@21 6 SHORT_DESC="Freetype font engine."
pankso@21 7 MAINTAINER="pankso@slitaz.org"
pankso@21 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@21 9 WEB_SITE="http://www.freetype.org/"
pankso@21 10 WGET_URL="http://download.savannah.gnu.org/releases/freetype/$TARBALL"
al@14225 11
al@14225 12 DEPENDS="slitaz-base-files zlib"
al@14225 13 BUILD_DEPENDS="bzip2-dev"
pankso@21 14
pankso@21 15 # Rules to configure and make the package.
pankso@21 16 compile_rules()
pankso@21 17 {
pankso@972 18 ./configure \
pankso@972 19 --sysconfdir=/etc \
al@14225 20 --disable-static \
pascal@2486 21 $CONFIGURE_ARGS &&
pascal@14231 22 make &&
pascal@14231 23 make install 2>&1 | grep -v rmdir
pankso@21 24 }
pankso@21 25
pankso@21 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@21 27 genpkg_rules()
pankso@21 28 {
pankso@21 29 mkdir -p $fs/usr/lib
slaxemulator@11169 30 cp -a $install/usr/bin $fs/usr
slaxemulator@11169 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@21 32 }
al@14226 33