fix networking

This commit is contained in:
novadragon.space 2025-07-22 22:44:26 +02:00
parent 7c9d1aa9e2
commit c8d5460a7c
2 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,7 @@
pkgbase = godot-export-templates-linux
pkgdesc = Godot export templates - Linux x86_64
pkgver = 4.4.1
pkgrel = 1
pkgrel = 2
url = https://github.com/godotengine/godot
arch = any
license = MIT

View file

@ -1,4 +1,5 @@
# Maintainer:
# Maintainer: xiota
# Mainterner: novadragon <me@novadragon.space>
## options
: ${_build_debug:=true}
@ -8,7 +9,7 @@
_pkgname="godot-export-templates"
pkgname="$_pkgname-linux"
pkgver=4.4.1
pkgrel=1
pkgrel=2
pkgdesc='Godot export templates - Linux x86_64'
url="https://github.com/godotengine/godot"
license=('MIT')
@ -47,10 +48,10 @@ pkgver() {
build() {
cd "$_pkgsrc"
scons platform=linux tools=no target=template_release arch=x86_64 production=yes
scons platform=linux tools=no target=template_release arch=x86_64
if [[ "${_build_debug::1}" == "t" ]]; then
scons platform=linux tools=no target=template_debug arch=x86_64 use_static_cpp=no
scons platform=linux tools=no target=template_debug arch=x86_64
fi
}