wok view mesa/receipt @ rev 1820

Split ndiswrapper.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Dec 05 23:08:55 2008 +0100 (2008-12-05)
parents 4c400bd09135
children 88bf5a2b55c3
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"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ln -s $src $PACKAGE-$VERSION
19 cd $src
20 #make realclean
21 make linux-x86 &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/local/lib $fs/usr
30 }