PKGBUILDs/extra/libglvnd/PKGBUILD

35 lines
1.1 KiB
Bash
Raw Normal View History

2016-03-17 01:00:00 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2019-12-10 14:04:45 +00:00
# - disable assembly
2016-03-17 01:00:00 +00:00
pkgname=libglvnd
2021-09-22 23:52:08 +00:00
pkgver=1.3.4
2021-05-01 18:51:01 +00:00
pkgrel=1
2016-03-17 01:00:00 +00:00
pkgdesc="The GL Vendor-Neutral Dispatch library"
2017-11-17 00:17:21 +00:00
arch=('x86_64')
2016-03-17 01:00:00 +00:00
url="https://github.com/NVIDIA/libglvnd"
license=('custom:BSD-like')
2020-01-06 14:49:51 +00:00
makedepends=('libxext' 'libx11' 'xorgproto' 'python' 'meson')
2017-03-11 16:39:08 +00:00
provides=('libgl' 'libegl' 'libgles')
2021-04-18 23:06:41 +00:00
source=("https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v$pkgver/libglvnd-v$pkgver.tar.gz"
2017-03-11 16:39:08 +00:00
LICENSE)
2021-09-22 23:52:08 +00:00
sha512sums=('52bb91884fe7686e3fec1bfbc1b6ebee4fbeab836792995d32cbe204ee162e542e8ffa96813120ea3f54a588aee20cad7426abedbd29c4c7851d7fe3cb9c2574'
2017-11-17 00:17:21 +00:00
'bf0f4a7e04220a407400f89226ecc1f798cc43035f2538cc8860e5088e1f84140baf0d4b0b28f66e4b802d4d6925769a1297c24e1ba39c1c093902b2931781a5')
2016-03-17 01:00:00 +00:00
2019-10-19 17:11:30 +00:00
build() {
2019-12-10 14:00:02 +00:00
arch-meson $pkgname-v$pkgver build \
2019-12-10 14:04:45 +00:00
-D gles1=false -D asm=disabled
2019-12-10 14:00:02 +00:00
ninja -C build
2016-03-17 01:00:00 +00:00
}
package() {
2017-03-25 17:19:35 +00:00
# libglvnd needs mesa for indirect rendering
depends=('libxext' 'mesa' 'opengl-driver')
2016-03-17 01:00:00 +00:00
2019-12-10 14:00:02 +00:00
DESTDIR="$pkgdir" ninja -C build install
2019-10-03 12:43:12 +00:00
2019-12-10 14:00:02 +00:00
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
2016-03-17 01:00:00 +00:00
}