wok view mesa/receipt @ rev 2206

cups: up to 13.9, fix web interface and dependencies
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 10 16:37:43 2009 +0100 (2009-02-10)
parents 3f898e9b90bd
children 6f7d74f3b2f4
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 BUILD_DEPENDS="xorg-dev xorg-xextproto"
10 SOURCE="Mesa"
11 TARBALL="${SOURCE}Lib-$VERSION.tar.bz2"
12 WEB_SITE="http://www.mesa3d.org/"
13 WGET_URL="$SF_MIRROR/mesa3d/$TARBALL"
14 PROVIDE="libgl libglu"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ln -s $src $PACKAGE-$VERSION
20 cd $src
21 #make realclean
22 make linux-x86 &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/local/lib $fs/usr
31 }