glslang 14.1.0-1
This commit is contained in:
commit
c0d88dff1b
36
PKGBUILD
Normal file
36
PKGBUILD
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
# Maintainer: Future Linux Team <futurelinux@163.com>
|
||||||
|
|
||||||
|
pkgname=glslang
|
||||||
|
pkgver=14.1.0
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="OpenGL and OpenGL ES shader front end and validator"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://github.com/KhronosGroup/glslang"
|
||||||
|
license=('BSD-3-Clause')
|
||||||
|
depends=('gcc-libs' 'spirv-tools')
|
||||||
|
makedepends=('cmake' 'ninja' 'python')
|
||||||
|
options=('!staticlibs')
|
||||||
|
source=(https://github.com/KhronosGroup/glslang/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
|
||||||
|
sha256sums=(b5e4c36d60eda7613f36cfee3489c6f507156829c707e1ecd7f48ca45b435322)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd ${pkgname}-${pkgver}
|
||||||
|
|
||||||
|
export CXXFLAGS+=" -ffat-lto-objects"
|
||||||
|
|
||||||
|
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DCMAKE_INSTALL_LIBDIR=lib64 \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DALLOW_EXTERNAL_SPIRV_TOOLS=ON \
|
||||||
|
-DBUILD_SHARED_LIBS=ON \
|
||||||
|
-DGLSLANG_TESTS=ON \
|
||||||
|
-GNinja -Bbuild
|
||||||
|
|
||||||
|
ninja -C build
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd ${pkgname}-${pkgver}
|
||||||
|
|
||||||
|
DESTDIR=${pkgdir} ninja -C build install
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user