wok annotate freetype/receipt @ rev 11277

Up: lxtask, lxrandr, lxmenu-data
author Alexander Medvedev <devl547@gmail.com>
date Thu Nov 10 03:21:19 2011 +0000 (2011-11-10)
parents 8a6c9717345f
children 19ade3a2cc9c
rev   line source
pankso@21 1 # SliTaz package receipt.
pankso@21 2
pankso@21 3 PACKAGE="freetype"
slaxemulator@11169 4 VERSION="2.4.7"
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"
pascal@2486 11 DEPENDS="zlib"
pankso@21 12
pankso@21 13 # Rules to configure and make the package.
pankso@21 14 compile_rules()
pankso@21 15 {
pankso@972 16 cd $src
pankso@972 17 ./configure \
pankso@972 18 --sysconfdir=/etc \
pankso@972 19 --prefix=/usr \
pankso@972 20 --mandir=/usr/share/man \
pascal@2486 21 $CONFIGURE_ARGS &&
pascal@2486 22 make &&
slaxemulator@11169 23 make DESTDIR=$DESTDIR install
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 }