pkg-mesa-qcom-git/PKGBUILD

155 lines
5.6 KiB
Bash
Raw Normal View History

# Maintainer: Reza Jahanbakhshi <reza.jahanbakhshi at gmail dot com
# Contributor: Lone_Wolf <lone_wolf@klaas-de-kat.nl>
2015-08-07 23:56:11 +08:00
# Contributor: Armin K. <krejzi at email dot com>
2014-12-31 02:42:36 +08:00
# Contributor: Kristian Klausen <klausenbusk@hotmail.com>
# Contributor: Egon Ashrafinia <e.ashrafinia@gmail.com>
# Contributor: Tavian Barnes <tavianator@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>
# Contributor: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Antti "Tera" Oja <antti.bofh@gmail.com>
# Contributor: Diego Jose <diegoxter1006@gmail.com>
pkgname=mesa-git
pkgdesc="an open-source implementation of the OpenGL specification, git version"
pkgver=22.0.0_devel.147797.92d84f189c7
2021-01-13 19:02:37 +08:00
pkgrel=1
arch=('x86_64')
makedepends=('git' 'python-mako' 'xorgproto'
'libxml2' 'libx11' 'libvdpau' 'libva' 'elfutils' 'libxrandr'
'ocl-icd' 'wayland-protocols' 'meson' 'ninja' 'glslang')
depends=('libdrm' 'libxxf86vm' 'libxdamage' 'libxshmfence' 'libelf'
'libomxil-bellagio' 'libunwind' 'libglvnd' 'wayland' 'lm_sensors' 'libclc' 'vulkan-icd-loader' 'zstd' 'expat')
2017-06-03 08:34:32 +08:00
optdepends=('opengl-man-pages: for the OpenGL API man pages')
provides=('mesa' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 'vulkan-mesa-layer' 'libva-mesa-driver' 'mesa-vdpau' 'vulkan-swrast' 'vulkan-driver' 'mesa-libgl' 'opengl-driver' 'opencl-driver')
conflicts=('mesa' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 'vulkan-mesa-layer' 'libva-mesa-driver' 'mesa-vdpau' 'vulkan-swrast' 'mesa-libgl')
2018-08-28 17:45:28 +08:00
url="https://www.mesa3d.org"
2014-12-31 02:42:36 +08:00
license=('custom')
source=('mesa::git+https://gitlab.freedesktop.org/mesa/mesa.git#branch=main'
'LICENSE'
'fix-pbuffer.patch')
md5sums=('SKIP'
'5c65a0fe315dd347e09b1f2826a1df5a'
'4ced312d276450afb43d5296458b5e0e')
2016-08-15 06:48:39 +08:00
sha512sums=('SKIP'
'25da77914dded10c1f432ebcbf29941124138824ceecaf1367b3deedafaecabc082d463abcfa3d15abff59f177491472b505bcb5ba0c4a51bb6b93b4721a23c2'
'921e6ef4a883e51604ec5a76bf7a3805633dc60178578faae9caeec840535cac91e4d6ce0d5826553340d8c76a1d369d92725ec89c346a270335b45ae6a4dade')
2017-05-22 23:01:33 +08:00
# NINJAFLAGS is an env var used to pass commandline options to ninja
# NOTE: It's your responbility to validate the value of $NINJAFLAGS. If unsure, don't set it.
2020-03-06 04:51:53 +08:00
# MESA_WHICH_LLVM is an environment variable that determines which llvm package tree is used to built mesa-git against.
# Adding a line to ~/.bashrc that sets this value is the simplest way to ensure a specific choice.
#
2020-03-06 04:51:53 +08:00
# NOTE: Aur helpers don't handle this method well, check the sticky comments on mesa-git aur page .
#
# 1: llvm-minimal-git (aur) preferred value
# 2: AUR llvm-git
# 3: llvm-git from LordHeavy unofficial repo
# 4 llvm (stable from extra) Default value
#
2021-01-03 23:54:00 +08:00
if [[ ! $MESA_WHICH_LLVM ]] ; then
MESA_WHICH_LLVM=4
fi
case $MESA_WHICH_LLVM in
1)
# aur llvm-minimal-git
2019-05-25 02:53:03 +08:00
makedepends+=('llvm-minimal-git')
depends+=('llvm-libs-minimal-git')
;;
2)
# aur llvm-git
# depending on aur-llvm-* to avoid mixup with LH llvm-git
makedepends+=('aur-llvm-git')
depends+=('aur-llvm-libs-git')
optdepends+=('aur-llvm-git: opencl')
;;
3)
# mesa-git/llvm-git (lordheavy unofficial repo)
makedepends+=('llvm-git' 'clang-git')
depends+=('llvm-libs-git')
optdepends+=('clang-git: opencl' 'compiler-rt: opencl')
;;
4)
# extra/llvm
2021-11-14 05:59:13 +08:00
makedepends+=(llvm=13.0.0 clang=13.0.0)
depends+=(llvm-libs=13.0.0)
optdepends+=('clang: opencl' 'compiler-rt: opencl')
;;
*)
esac
2014-12-31 02:42:36 +08:00
pkgver() {
cd mesa
read -r _ver <VERSION
echo ${_ver/-/_}.$(git rev-list --count HEAD).$(git rev-parse --short HEAD)
2014-12-31 02:42:36 +08:00
}
prepare() {
# although removing _build folder in build() function feels more natural,
# that interferes with the spirit of makepkg --noextract
if [ -d _build ]; then
rm -rf _build
fi
patch --directory=mesa --forward --strip=1 --input="${srcdir}/fix-pbuffer.patch"
}
build () {
meson setup mesa _build \
-D b_ndebug=true \
2020-07-02 22:41:53 +08:00
-D b_lto=true \
-D buildtype=plain \
--wrap-mode=nofallback \
-D prefix=/usr \
-D sysconfdir=/etc \
-D platforms=x11,wayland \
2021-06-20 20:58:12 +08:00
-D gallium-drivers=r300,r600,radeonsi,nouveau,svga,swrast,virgl,iris,zink,crocus \
-D vulkan-drivers=amd,intel,swrast,virtio-experimental \
2020-06-08 19:56:00 +08:00
-D dri3=enabled \
-D egl=enabled \
-D gallium-extra-hud=true \
-D gallium-nine=true \
-D gallium-omx=bellagio \
2020-06-08 19:56:00 +08:00
-D gallium-va=enabled \
-D gallium-vdpau=enabled \
-D gallium-xa=enabled \
-D gallium-xvmc=disabled \
-D gbm=enabled \
-D gles1=disabled \
-D gles2=enabled \
-D glvnd=true \
-D glx=dri \
2020-06-08 19:56:00 +08:00
-D libunwind=enabled \
-D llvm=enabled \
-D lmsensors=enabled \
-D osmesa=true \
2020-06-08 19:56:00 +08:00
-D shared-glapi=enabled \
-D gallium-opencl=icd \
2020-06-08 19:56:00 +08:00
-D valgrind=disabled \
-D vulkan-layers=device-select,overlay \
-D tools=[] \
2020-12-07 06:35:19 +08:00
-D zstd=enabled \
-D microsoft-clc=disabled
meson configure _build
ninja $NINJAFLAGS -C _build
2014-12-31 02:42:36 +08:00
}
package() {
DESTDIR="${pkgdir}" ninja $NINJAFLAGS -C _build install
# remove script file from /usr/bin
# https://gitlab.freedesktop.org/mesa/mesa/issues/2230
rm "${pkgdir}/usr/bin/mesa-overlay-control.py"
rmdir "${pkgdir}/usr/bin"
# indirect rendering
ln -s /usr/lib/libGLX_mesa.so.0 "${pkgdir}/usr/lib/libGLX_indirect.so.0"
install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" "${srcdir}/LICENSE"
2014-12-31 02:42:36 +08:00
}