wok view freetype/receipt @ rev 14679

ethumb: Up to 1.7.7
author Dominique Corbex <domcox@slitaz.org>
date Thu Jun 06 22:08:56 2013 +0200 (2013-06-06)
parents a820a23202dd
children 7bb096863642
line source
1 # SliTaz package receipt.
3 PACKAGE="freetype"
4 VERSION="2.4.11"
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"
12 DEPENDS="slitaz-base-files zlib"
13 BUILD_DEPENDS="bzip2-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --sysconfdir=/etc \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 make &&
23 make install 2>&1 | grep -v rmdir
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }