wok-next view xorg-xf86-video-nouveau/receipt @ rev 20142

vlc: receipt v2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 01 11:06:02 2017 +0100 (2017-11-01)
parents f463de72afe3
children 757d032c55c7
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xf86-video-nouveau"
4 VERSION="1.0.15"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg driver for NVIDIA video cards"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="https://nouveau.freedesktop.org/wiki/"
11 TARBALL="xf86-video-nouveau-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
14 BUILD_DEPENDS="xorg-util-macros xorg-server-dev xorg-libXrandr-dev \
15 xorg-libXrender-dev xorg-libXv-dev eudev-dev"
16 SPLIT="xorg-xf86-video-nouveau-dev"
17 PKG_RULE="std-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 case $PACKAGE in
34 *-nouveau)
35 copy @std
36 DEPENDS="eudev libdrm libdrm-nouveau"
37 TAGS="xorg display"
38 ;;
39 *-dev)
40 copy @dev
41 DEPENDS="xorg-xf86-video-nouveau xorg-server-dev eudev-dev \
42 libdrm-dev"
43 ;;
44 esac
45 }