diff options
author | Cem Keylan <cem@ckyln.com> | 2023-09-27 16:09:27 +0200 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2023-09-27 16:09:27 +0200 |
commit | 56ca14a87ec1085812022dd64888a9bd1bc1653a (patch) | |
tree | 093dcafec3c6fc17a50627fdbd350e7e5a510619 /testing/godot/build | |
parent | 6a44b857ed4c0f471e9b2256d37422d8cd7ffc89 (diff) | |
download | repository-56ca14a87ec1085812022dd64888a9bd1bc1653a.tar.gz |
godot: move to community
Diffstat (limited to 'testing/godot/build')
-rwxr-xr-x | testing/godot/build | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/testing/godot/build b/testing/godot/build deleted file mode 100755 index c70e7c23..00000000 --- a/testing/godot/build +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh -e -# TODO - -# Temporarily install scons to build godot -( - cd scons - - python3 setup.py build - python3 setup.py install \ - --prefix=/usr \ - --root="$PWD/dist" - -) - -for patch in *.patch; do - [ -f "$patch" ] && patch -p1 < "$patch" -done - -PYTHONPATH=$(./pythonpath) -PATH=$PWD/scons/dist/usr/bin:$PATH -LDFLAGS="$LDFLAGS -L$PWD/execinfo" -CFLAGS="$CFLAGS -I$PWD/execinfo" -CXXFLAGS="$CXXFLAGS -I$PWD/execinfo" - -export PYTHONPATH PATH LDFLAGS CFLAGS CXXFLAGS - -# clsed 's/#ifdef CRASH_HANDLER_ENABLED/#if defined(CRASH_HANDLER_ENABLED) \&\& defined(__GLIBC__)/' \ -# platform/linuxbsd/crash_handler_linuxbsd.cpp - -scons \ - LINKFLAGS="$LDFLAGS" \ - CFLAGS="$CFLAGS" \ - CXXFLAGS="$CXXFLAGS" \ - progress=true \ - arch=x64 \ - speechd=no \ - graphite=false \ - builtin_freetype=false \ - builtin_zlib=false \ - builtin_glslang=true \ - builtin_graphite=false \ - builtin_harfbuzz=false \ - builtin_icu4c=false \ - builtin_libpng=false \ - builtin_libogg=false \ - builtin_libtheora=false \ - builtin_libvorbis=false \ - builtin_libwebp=false \ - builtin_zstd=false - -clinst -Dm755 bin/godot.linuxbsd.editor.x86_64 "$1/usr/bin/godot4" -clinst -Dm644 icon.png "$1/usr/share/pixmaps/godot.png" -clinst -Dm644 godot4.desktop "$1/usr/share/applications/godot4.desktop" -ln -s godot4 "$1/usr/bin/godot" |