wok view mesa/receipt @ rev 903

Up: freetype (2.3.6)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Jun 14 18:58:30 2008 +0200 (2008-06-14)
parents 1557df49c519
children 4c400bd09135
line source
1 # SliTaz package receipt.
3 PACKAGE="mesa"
4 VERSION="7.0.3"
5 CATEGORY="misc"
6 SHORT_DESC="3D Graphics Library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="xorg"
9 SOURCE="Mesa"
10 TARBALL="${SOURCE}Lib-$VERSION.tar.bz2"
11 WEB_SITE="http://www.mesa3d.org/"
12 WGET_URL="$SF_MIRROR/mesa3d/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ln -s $src $PACKAGE-$VERSION
18 cd $src
19 make linux-x86
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/local/lib $fs/usr
28 }