wok-current view mesa-dri-nouveau/receipt @ rev 25673

Up broadcom-wl drivers, add miss driver for mesa-dri (iris, crocus, virtio)
author Stanislas Leduc <shann@slitaz.org>
date Mon Mar 04 16:57:21 2024 +0000 (3 months ago)
parents 3ad63c8fc2f9
children 9cfcf18b0d6c
line source
1 # SliTaz package receipt.
3 PACKAGE="mesa-dri-nouveau"
4 VERSION="21.3.5"
5 CATEGORY="x-window"
6 SHORT_DESC="Mesa classic DRI + Gallium3D drivers for Nouveau."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.mesa3d.org/"
11 DEPENDS="libdrm-nouveau mesa"
12 WANTED="mesa"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/usr/lib/dri
18 mkdir -p $fs/etc/X11/xorg.conf.d
20 cp $install/usr/lib/dri/nouveau*_dri.so $fs/usr/lib/dri
22 cat > $fs/etc/X11/xorg.conf.d/90-DRI.conf <<EOT
23 Section "DRI"
24 Mode 0666
25 EndSection
26 EOT
28 chown -R root.root $fs
29 }
31 TAZBB_NO_INSTALL="because this is not hardware neutral"