pkg-mesa-qcom-git/PKGBUILD

159 lines
7.2 KiB
Bash
Raw Normal View History

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
pkgname=('mesa-git' 'mesa-libgl-git')
pkgdesc="an open-source implementation of the OpenGL specification, git version"
pkgver=17.1.0_devel.89365.010fecb853
2016-07-21 08:52:27 +08:00
pkgrel=1
arch=('x86_64')
makedepends=('git' 'python2-mako' 'llvm-svn' 'libclc' 'clang-svn' 'libdrm' 'glproto'
'dri2proto' 'dri3proto' 'presentproto' 'libxml2' 'libx11' 'libxshmfence'
'libxxf86vm' 'libxdamage' 'libvdpau' 'libva' 'wayland' 'elfutils' 'libomxil-bellagio'
'libtxc_dxtn' 'ocl-icd' 'vulkan-icd-loader' 'libgcrypt')
2014-12-31 02:42:36 +08:00
url="http://mesa3d.sourceforge.net"
license=('custom')
2016-12-12 07:17:42 +08:00
source=('mesa::git+https://anongit.freedesktop.org/git/mesa/mesa.git'
2016-06-20 22:20:46 +08:00
'LICENSE'
2016-08-15 06:48:39 +08:00
'disable-pthread-stubs-on-linux.patch'
2016-11-09 02:20:48 +08:00
)
2016-08-15 06:48:39 +08:00
sha512sums=('SKIP'
'25da77914dded10c1f432ebcbf29941124138824ceecaf1367b3deedafaecabc082d463abcfa3d15abff59f177491472b505bcb5ba0c4a51bb6b93b4721a23c2'
'1a8ffbc194a8264ae08cad7b886ec87cd331047f35272fdcb11901ddb0c6f64e2cd69af946e01254c9df8fe881ad1e42162202e1bc38db97aaf294313fb0f9ce'
2016-11-09 02:20:48 +08:00
)
2014-12-31 02:42:36 +08:00
2016-06-20 22:20:46 +08:00
prepare() {
cd mesa
2016-08-15 06:48:39 +08:00
# pthread-stubs is useless on linux
patch -Np1 -i "$srcdir"/disable-pthread-stubs-on-linux.patch
}
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
}
build () {
cd mesa
2014-12-31 02:42:36 +08:00
./autogen.sh --prefix=/usr \
--sysconfdir=/etc \
--with-dri-driverdir=/usr/lib/xorg/modules/dri \
--with-gallium-drivers=i915,r300,r600,radeonsi,nouveau,svga,swrast,virgl \
2014-12-31 02:42:36 +08:00
--with-dri-drivers=i915,i965,r200,radeon,nouveau,swrast \
--with-egl-platforms=x11,drm,wayland \
2016-10-08 05:50:33 +08:00
--with-vulkan-drivers=intel,radeon \
2014-12-31 02:42:36 +08:00
--enable-texture-float \
--enable-osmesa \
2014-12-31 02:42:36 +08:00
--enable-xa \
--enable-nine \
--disable-xvmc \
2014-12-31 02:42:36 +08:00
--enable-vdpau \
--enable-omx \
--enable-opencl \
--enable-opencl-icd \
2016-10-08 05:50:33 +08:00
--enable-glx-tls
# Used configure settings
#
# --prefix=PREFIX install architecture-independent files in PREFIX
# --sysconfdir=DIR read-only single-machine data
# [PREFIX/etc]
# --with-dri-driverdir=DIR directory for the DRI drivers
# [${libdir}/dri]
# --with-gallium-drivers[=DIRS...] comma delimited Gallium drivers list, e.g. "i915,ilo,nouveau,r300,r600,radeonsi,freedreno,svga,swrast,vc4,virgl"
# [default=r300,r600,svga,swrast]
# --with-dri-drivers[=DIRS...] comma delimited classic DRI drivers list, e.g. "swrast,i965,radeon"
# [default=auto]
# --with-egl-platforms[=DIRS...] comma delimited native platforms libEGL supports, e.g. "x11,drm"
# [default=auto]
# --with-vulkan-drivers[=DIRS...] comma delimited Vulkan drivers list, e.g. "intel"
# [default=no]
# --enable-texture-float enable floating-point textures and renderbuffers
# [default=disabled]
# --enable-osmesa enable OSMesa library
# [default=disabled]
# --enable-xa enable build of the XA X Acceleration API
# [default=disabled]
# --enable-nine enable build of the nine Direct3D9 API
# [default=no]
# --disable-xvmc enable xvmc library
# [default=auto]
# --enable-vdpau enable vdpau library
# [default=auto]
# --enable-omx enable OpenMAX library
# [default=disabled]
# --enable-opencl enable OpenCL library
# [default=disabled]
# --enable-opencl-icd Build an OpenCL ICD library to be loaded by an ICD implementation
# [default=disabled]
# --enable-glx-tls enable TLS support in GLX
# [default=disabled]
2016-10-08 05:50:33 +08:00
make
2014-12-31 02:42:36 +08:00
}
2015-08-07 23:56:11 +08:00
2014-12-31 02:42:36 +08:00
package_mesa-git () {
pkgdesc="an open-source implementation of the OpenGL specification, git version"
depends=('libdrm' 'wayland' 'libxxf86vm' 'libxdamage' 'libxshmfence' 'libelf'
'libomxil-bellagio' 'libtxc_dxtn' 'llvm-libs-svn')
optdepends=('opengl-man-pages: for the OpenGL API man pages')
provides=('mesa' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 'libva-mesa-driver' 'mesa-vdpau' 'vulkan-driver' 'opencl-driver')
replaces=('mesa' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 'libva-mesa-driver' 'mesa-vdpau')
conflicts=('mesa' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 'libva-mesa-driver' 'mesa-vdpau')
2014-12-31 02:42:36 +08:00
cd mesa
make DESTDIR="$pkgdir" install
# remove vulkan headers as they are provided by vulkan-headers package
rm -rf "$pkgdir"/usr/include/vulkan/vk_platform.h "$pkgdir"/usr/include/vulkan/vulkan.h
install -m755 -d ${pkgdir}/usr/lib/mesa
# move libgl/EGL/glesv*.so to not conflict with blobs ?
mv -v "$pkgdir"/usr/lib/libGL.so* "$pkgdir"/usr/lib/mesa/
mv -v "$pkgdir"/usr/lib/libEGL.so* "$pkgdir"/usr/lib/mesa/
mv -v "$pkgdir"/usr/lib/libGLES*.so* "$pkgdir"/usr/lib/mesa/
2014-12-31 02:42:36 +08:00
install -m755 -d "$pkgdir"/usr/share/licenses/$pkgbase
install -m644 "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgbase/
2014-12-31 02:42:36 +08:00
}
package_mesa-libgl-git () {
pkgdesc="Mesa 3-D graphics library"
depends=('mesa-git')
provides=('mesa-libgl' 'libgl' 'libgles' 'libegl')
replaces=('mesa-libgl' 'libgles' 'libegl')
2016-11-09 02:20:48 +08:00
conflicts=('mesa-libgl' 'libgles' 'libegl')
2014-12-31 02:42:36 +08:00
install -m755 -d "$pkgdir"/usr/lib/
ln -s /usr/lib/mesa/libGL.so.1.2.0 "$pkgdir"/usr/lib/libGL.so.1.2.0
ln -s libGL.so.1.2.0 "$pkgdir"/usr/lib/libGL.so.1
ln -s libGL.so.1.2.0 "$pkgdir"/usr/lib/libGL.so
2014-12-31 02:42:36 +08:00
ln -s /usr/lib/mesa/libEGL.so.1.0.0 "$pkgdir"/usr/lib/libEGL.so.1.0.0
ln -s libEGL.so.1.0.0 "$pkgdir"/usr/lib/libEGL.so.1
ln -s libEGL.so.1.0.0 "$pkgdir"/usr/lib/libEGL.so
2014-12-31 02:42:36 +08:00
ln -s /usr/lib/mesa/libGLESv1_CM.so.1.1.0 "$pkgdir"/usr/lib/libGLESv1_CM.so.1.1.0
ln -s libGLESv1_CM.so.1.1.0 "$pkgdir"/usr/lib/libGLESv1_CM.so.1
ln -s libGLESv1_CM.so.1.1.0 "$pkgdir"/usr/lib/libGLESv1_CM.so
2014-12-31 02:42:36 +08:00
ln -s /usr/lib/mesa/libGLESv2.so.2.0.0 "$pkgdir"/usr/lib/libGLESv2.so.2.0.0
ln -s libGLESv2.so.2.0.0 "$pkgdir"/usr/lib/libGLESv2.so.2
ln -s libGLESv2.so.2.0.0 "$pkgdir"/usr/lib/libGLESv2.so
2014-12-31 02:42:36 +08:00
install -m755 -d "$pkgdir"/usr/share/licenses/mesa-libgl-git
install -m644 "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/mesa-libgl-git/
2016-04-20 06:05:29 +08:00
}