wok view freetype/receipt @ rev 15863

audacious-plugins: update TARBALL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 30 09:14:06 2014 +0000 (2014-01-30)
parents 7bb096863642
children dc05f28d0496
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 LICENSE="BSD GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.freetype.org/"
11 WGET_URL="http://download.savannah.gnu.org/releases/freetype/$TARBALL"
13 DEPENDS="slitaz-base-files zlib"
14 BUILD_DEPENDS="bzip2-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --sysconfdir=/etc \
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 }