From 8aa88df382c1c3339a877e465d8ba9e016b2a7b5 Mon Sep 17 00:00:00 2001 From: Lone_Wolf Date: Thu, 16 Jul 2020 13:27:44 +0200 Subject: [PATCH] switched to b_ndebug=false for now, also corrected permissions for license file --- .SRCINFO | 4 ++-- PKGBUILD | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 863f0ad..439d8bc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = mesa-git pkgdesc = an open-source implementation of the OpenGL specification, git version - pkgver = 20.2.0_devel.125631.ab9ecb607b8 - pkgrel = 1 + pkgver = 20.2.0_devel.126148.97f8ec321b7 + pkgrel = 2 url = https://www.mesa3d.org arch = x86_64 license = custom diff --git a/PKGBUILD b/PKGBUILD index 32b1ebd..ae39040 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,8 +11,8 @@ pkgname=mesa-git pkgdesc="an open-source implementation of the OpenGL specification, git version" -pkgver=20.2.0_devel.125631.ab9ecb607b8 -pkgrel=1 +pkgver=20.2.0_devel.126148.97f8ec321b7 +pkgrel=2 arch=('x86_64') makedepends=('git' 'python-mako' 'xorgproto' 'libxml2' 'libx11' 'libvdpau' 'libva' 'elfutils' 'libomxil-bellagio' 'libxrandr' @@ -98,7 +98,7 @@ prepare() { build () { meson setup mesa _build \ - -D b_ndebug=true \ + -D b_ndebug=false \ -D b_lto=true \ -D buildtype=plain \ --wrap-mode=nofallback \ @@ -155,5 +155,5 @@ package() { # indirect rendering ln -s /usr/lib/libGLX_mesa.so.0 "${pkgdir}/usr/lib/libGLX_indirect.so.0" - install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" "${srcdir}/LICENSE" + install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" "${srcdir}/LICENSE" }