2015-08-07 23:56:11 +08:00
|
|
|
# Maintainer: Lone_Wolf <lonewolf at xs4all dot nl>
|
|
|
|
# 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>
|
|
|
|
|
|
|
|
pkgbase=mesa-git
|
2017-05-22 23:01:33 +08:00
|
|
|
pkgname=('mesa-git')
|
2016-02-01 22:21:55 +08:00
|
|
|
pkgdesc="an open-source implementation of the OpenGL specification, git version"
|
2019-03-09 21:09:08 +08:00
|
|
|
pkgver=19.1.0_devel.108956.d7b31969767
|
2018-08-08 02:54:07 +08:00
|
|
|
pkgrel=1
|
2017-02-28 06:48:24 +08:00
|
|
|
arch=('x86_64')
|
2018-08-12 22:13:16 +08:00
|
|
|
makedepends=('git' 'python-mako' 'llvm-svn' 'clang-svn' 'xorgproto'
|
2018-11-17 00:22:11 +08:00
|
|
|
'libxml2' 'libx11' 'libvdpau' 'libva' 'elfutils' 'libomxil-bellagio' 'libxrandr'
|
2018-08-05 02:53:04 +08:00
|
|
|
'ocl-icd' 'vulkan-icd-loader' 'libgcrypt' 'wayland' 'wayland-protocols' 'meson')
|
2018-04-04 05:56:41 +08:00
|
|
|
depends=('libdrm' 'libxxf86vm' 'libxdamage' 'libxshmfence' 'libelf'
|
2018-08-05 02:53:04 +08:00
|
|
|
'libomxil-bellagio' 'llvm-libs-svn' 'libunwind' 'libglvnd' 'wayland' 'lm_sensors' 'libclc')
|
2017-06-03 08:34:32 +08:00
|
|
|
optdepends=('opengl-man-pages: for the OpenGL API man pages')
|
2018-08-05 02:53:04 +08:00
|
|
|
provides=('mesa' 'vulkan-intel' 'vulkan-radeon' 'libva-mesa-driver' 'mesa-vdpau' 'vulkan-driver' 'opencl-mesa' 'opengl-driver' 'opencl-driver')
|
2018-05-26 19:55:35 +08:00
|
|
|
conflicts=('mesa' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 'libva-mesa-driver' 'mesa-vdpau')
|
2018-08-28 17:45:28 +08:00
|
|
|
url="https://www.mesa3d.org"
|
2014-12-31 02:42:36 +08:00
|
|
|
license=('custom')
|
2017-03-15 22:03:38 +08:00
|
|
|
source=('mesa::git://anongit.freedesktop.org/mesa/mesa'
|
2016-06-20 22:20:46 +08:00
|
|
|
'LICENSE'
|
2016-11-09 02:20:48 +08:00
|
|
|
)
|
2016-08-15 06:48:39 +08:00
|
|
|
sha512sums=('SKIP'
|
2018-12-16 20:42:15 +08:00
|
|
|
'25da77914dded10c1f432ebcbf29941124138824ceecaf1367b3deedafaecabc082d463abcfa3d15abff59f177491472b505bcb5ba0c4a51bb6b93b4721a23c2')
|
2017-05-22 23:01:33 +08:00
|
|
|
|
2014-12-31 02:42:36 +08:00
|
|
|
pkgver() {
|
2016-01-30 02:09:39 +08:00
|
|
|
cd mesa
|
2017-02-28 06:48:24 +08:00
|
|
|
read -r _ver <VERSION
|
|
|
|
echo ${_ver/-/_}.$(git rev-list --count HEAD).$(git rev-parse --short HEAD)
|
2014-12-31 02:42:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
build () {
|
2018-06-27 02:46:10 +08:00
|
|
|
if [ -d _build ]; then
|
|
|
|
rm -rf _build
|
|
|
|
fi
|
|
|
|
meson setup mesa _build \
|
|
|
|
-D b_ndebug=true \
|
|
|
|
-D buildtype=plain \
|
|
|
|
--wrap-mode=nofallback \
|
|
|
|
-D prefix=/usr \
|
|
|
|
-D sysconfdir=/etc \
|
|
|
|
-D platforms=x11,wayland,drm,surfaceless \
|
|
|
|
-D dri-drivers=i915,i965,r200,r100,nouveau \
|
2019-02-26 06:46:06 +08:00
|
|
|
-D gallium-drivers=r300,r600,radeonsi,nouveau,svga,swrast,virgl,iris \
|
2018-06-27 02:46:10 +08:00
|
|
|
-D vulkan-drivers=amd,intel \
|
|
|
|
-D dri3=true \
|
|
|
|
-D egl=true \
|
|
|
|
-D gallium-extra-hud=true \
|
|
|
|
-D gallium-nine=true \
|
|
|
|
-D gallium-omx=bellagio \
|
|
|
|
-D gallium-va=true \
|
|
|
|
-D gallium-vdpau=true \
|
|
|
|
-D gallium-xa=true \
|
|
|
|
-D gallium-xvmc=false \
|
|
|
|
-D gbm=true \
|
|
|
|
-D gles1=true \
|
|
|
|
-D gles2=true \
|
|
|
|
-D glvnd=true \
|
|
|
|
-D glx=dri \
|
|
|
|
-D libunwind=true \
|
|
|
|
-D llvm=true \
|
|
|
|
-D lmsensors=true \
|
|
|
|
-D osmesa=gallium \
|
|
|
|
-D shared-glapi=true \
|
2018-08-05 02:53:04 +08:00
|
|
|
-D gallium-opencl=icd \
|
|
|
|
-D valgrind=false \
|
|
|
|
-D tools=[]
|
2018-06-27 02:46:10 +08:00
|
|
|
meson configure _build
|
|
|
|
ninja -C _build
|
2014-12-31 02:42:36 +08:00
|
|
|
}
|
|
|
|
|
2015-08-07 23:56:11 +08:00
|
|
|
|
2017-06-03 08:34:32 +08:00
|
|
|
package_mesa-git() {
|
2014-12-31 02:42:36 +08:00
|
|
|
|
2018-06-27 02:46:10 +08:00
|
|
|
DESTDIR="$pkgdir" ninja -C _build install
|
2016-04-20 16:52:59 +08:00
|
|
|
|
2017-05-22 23:01:33 +08:00
|
|
|
# indirect rendering
|
|
|
|
ln -s /usr/lib/libGLX_mesa.so.0 ${pkgdir}/usr/lib/libGLX_indirect.so.0
|
2014-12-31 02:42:36 +08:00
|
|
|
|
2018-04-04 17:07:37 +08:00
|
|
|
install -Dt "$pkgdir"/usr/share/licenses/$pkgbase "$srcdir"/LICENSE
|
2014-12-31 02:42:36 +08:00
|
|
|
}
|