blob: 804ba9e9ceb258faa4b574e3b27738c870025ac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/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
export PYTHONPATH PATH
scons \
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"
|