wok annotate freetype/receipt @ rev 16556
Up: spk (1.4.2) - Critical bug fix for config files
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed Apr 30 14:37:37 2014 +0200 (2014-04-30) |
parents | 691511385fb8 |
children | 7e930b05781d |
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" |
pascal@15215 | 8 LICENSE="BSD GPL2" |
pankso@21 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@21 | 10 WEB_SITE="http://www.freetype.org/" |
pankso@21 | 11 WGET_URL="http://download.savannah.gnu.org/releases/freetype/$TARBALL" |
pankso@15995 | 12 HOST_ARCH="i486 arm" |
al@14225 | 13 |
al@14225 | 14 DEPENDS="slitaz-base-files zlib" |
al@14225 | 15 BUILD_DEPENDS="bzip2-dev" |
pankso@21 | 16 |
pankso@21 | 17 # Rules to configure and make the package. |
pankso@21 | 18 compile_rules() |
pankso@21 | 19 { |
pankso@972 | 20 ./configure \ |
pankso@972 | 21 --sysconfdir=/etc \ |
pascal@2486 | 22 $CONFIGURE_ARGS && |
pascal@14231 | 23 make && |
pascal@14231 | 24 make install 2>&1 | grep -v rmdir |
pankso@21 | 25 } |
pankso@21 | 26 |
pankso@21 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@21 | 28 genpkg_rules() |
pankso@21 | 29 { |
pankso@21 | 30 mkdir -p $fs/usr/lib |
slaxemulator@11169 | 31 cp -a $install/usr/bin $fs/usr |
slaxemulator@11169 | 32 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@21 | 33 } |
al@14226 | 34 |