wok view freetype/receipt @ rev 15215

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 14 17:06:00 2013 +0000 (2013-09-14)
parents 7dd248640618
children 691511385fb8
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 --disable-static \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install 2>&1 | grep -v rmdir
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }