wok view ftgl/receipt @ rev 12667

rage: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 01 11:48:38 2012 +0200 (2012-05-01)
parents a820dca1f67f
children d361a98367e5
line source
1 # SliTaz package receipt.
3 PACKAGE="ftgl"
4 VERSION="2.1.3-rc5"
5 CATEGORY="x-window"
6 SHORT_DESC="OpenGL library to use arbitrary fonts"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="freetype freeglut mesa libglu-mesa"
9 BUILD_DEPENDS="$DEPENDS freetype-dev freeglut-dev mesa-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://ftgl.wiki.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --with-pic \
20 $CONFIGURE_ARGS &&
21 make && make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }