summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur LAURENT2024-04-01 17:31:49 +0200
committerArthur LAURENT2024-04-01 17:31:49 +0200
commit26f88d17829e8a84f9206f28afd878b519c8beca (patch)
treed025de6ab1273d7bf3fb6829d9bda2aa1a5f57b2
parent457ca5d4b32770846d423c0e8004a5542c36ffa4 (diff)
downloadaur-26f88d17829e8a84f9206f28afd878b519c8beca.tar.gz
generate shared library instead of static library
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e74335336b62..f68fe0bca7a1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = nzsl
pkgdesc = A shader language inspired by Rust and C++ which compiles to GLSL or SPIRV (without any additional dependency)
pkgver = 20240227
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/NazaraEngine/ShaderLang
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 969649780211..8bd1e1be286f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=nzsl
pkgver=20240227
-pkgrel=2
+pkgrel=3
pkgdesc="A shader language inspired by Rust and C++ which compiles to GLSL or SPIRV (without any additional dependency)"
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
url="https://github.com/NazaraEngine/ShaderLang"
@@ -17,7 +17,7 @@ sha256sums=('SKIP')
prepare() {
cd "ShaderLang"
- xmake f -m release --tests=y --examples=n --yes
+ xmake f -k shared -m release --tests=y --examples=n --yes
}
build() {