wok view mesa-dri/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | f03e80442706 |
children | 07ae722ec64e |
line source
1 # SliTaz package receipt.
3 PACKAGE="mesa-dri"
4 VERSION="7.8.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Mesa DRI drivers."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="libdrm expat linux-drm linux-agp"
9 WEB_SITE="http://www.mesa3d.org/"
10 WANTED="mesa"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 mkdir -p $fs/usr/lib
17 mkdir -p $fs/etc/X11/xorg.conf.d
18 cp -a stuff/*.conf $fs/etc/X11/xorg.conf.d
20 # Copy everything, remove file while generating splited packages.
21 cp -a $_pkg/usr/lib/dri $fs/usr/lib
22 cd $WOK
23 for pkg in mesa-dri-*
24 do
25 tazwok genpkg $pkg
26 for file in `ls $pkg/taz/*/fs/usr/lib/dri`
27 do
28 rm $WOK/$PACKAGE/taz/*/fs/usr/lib/dri/$file
29 done
30 done
31 }