diff options
| author | zorz <zorz@opentux.org> | 2026-02-27 17:37:23 +0200 |
|---|---|---|
| committer | zorz <zorz@opentux.org> | 2026-02-27 17:37:23 +0200 |
| commit | de196c8550dfd3317043fcc71de1506ac076e14f (patch) | |
| tree | 1e59293fa24652b1f7c96a95d522afd0590589bc /x11-xf86-video-nouveau | |
| parent | 83404b410d422331951d406323962f314f9546ee (diff) | |
| download | xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.gz xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.xz | |
Initial commit: xorg/x11 ports
Diffstat (limited to 'x11-xf86-video-nouveau')
| -rw-r--r-- | x11-xf86-video-nouveau/MAKEPKG | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/x11-xf86-video-nouveau/MAKEPKG b/x11-xf86-video-nouveau/MAKEPKG new file mode 100644 index 0000000..92ca920 --- /dev/null +++ b/x11-xf86-video-nouveau/MAKEPKG | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | #!/bin/mkpkg | ||
| 2 | # *** OpenTUX *** | ||
| 3 | # description: X.org Nouveau (NVIDIA) video driver | ||
| 4 | # url: https://nouveau.freedesktop.org/ | ||
| 5 | |||
| 6 | name=x11-xf86-video-nouveau | ||
| 7 | version=1.0.18 | ||
| 8 | release=1 | ||
| 9 | depends=(x11-server mesa) | ||
| 10 | source=(https://xorg.freedesktop.org/archive/individual/driver/xf86-video-nouveau-$version.tar.xz) | ||
| 11 | |||
| 12 | build() { | ||
| 13 | cd xf86-video-nouveau-$version | ||
| 14 | |||
| 15 | export CFLAGS="$CFLAGS -Wno-implicit-function-declaration" | ||
| 16 | |||
| 17 | ./configure --prefix=/usr | ||
| 18 | make | ||
| 19 | make DESTDIR=$PKG install | ||
| 20 | } | ||
| 21 | |||
| 22 | # vim: filetype=sh | ||