wok-next diff mesa/receipt @ rev 699
Add: x11vnc
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 01 15:15:33 2008 +0000 (2008-05-01) |
parents | |
children | 9b3d2133ce0f |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mesa/receipt Thu May 01 15:15:33 2008 +0000 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="mesa" 1.7 +VERSION="7.0.3" 1.8 +CATEGORY="extra" 1.9 +SHORT_DESC="3D Graphics Library." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +DEPENDS="xorg" 1.12 +SOURCE="Mesa" 1.13 +TARBALL="${SOURCE}Lib-$VERSION.tar.bz2" 1.14 +WEB_SITE="http://www.mesa3d.org/" 1.15 +WGET_URL="$SF_MIRROR/mesa3d/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + ln -s $src $PACKAGE-$VERSION 1.21 + cd $src 1.22 + make linux-x86 1.23 + make DESTDIR=$PWD/_pkg install 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr 1.30 + cp -a $_pkg/usr/local/lib $fs/usr 1.31 +} 1.32 +