wok view freetype/receipt @ rev 13775

Up slitaz-tools (5.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 03 15:11:11 2013 +0100 (2013-01-03)
parents 991166a88afa
children 66feb7f9e198
line source
1 # SliTaz package receipt.
3 PACKAGE="freetype"
4 VERSION="2.4.9"
5 CATEGORY="x-window"
6 SHORT_DESC="Freetype font engine."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.freetype.org/"
10 WGET_URL="http://download.savannah.gnu.org/releases/freetype/$TARBALL"
11 DEPENDS="zlib"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --sysconfdir=/etc \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }