27 lines
596 B
Bash
27 lines
596 B
Bash
# Template file for 'xorg-video-drivers'
|
|
pkgname=xorg-video-drivers
|
|
version=7.6
|
|
revision=22
|
|
build_style=meta
|
|
depends="xf86-video-fbdev xf86-video-dummy"
|
|
short_desc="X.org video drivers meta-package"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="CC0-1.0"
|
|
homepage="http://www.voidlinux.org"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*|x86_64*)
|
|
depends+=" xf86-video-vesa"
|
|
depends+=" xf86-video-intel"
|
|
depends+=" xf86-video-vmware"
|
|
;;
|
|
esac
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
armv[56]*|mips*) ;;
|
|
*)
|
|
depends+=" xf86-video-ati xf86-video-amdgpu"
|
|
depends+=" xf86-video-nouveau"
|
|
;;
|
|
esac
|