45 lines
1.6 KiB
Bash
45 lines
1.6 KiB
Bash
# Template file for 'godot'
|
|
pkgname=godot
|
|
version=3.0.2
|
|
revision=2
|
|
wrksrc="${pkgname}-${version}-stable"
|
|
build_style=scons
|
|
hostmakedepends="scons pkg-config clang"
|
|
makedepends="
|
|
alsa-lib-devel freetype-devel glu-devel libXcursor-devel libXi-devel
|
|
libXinerama-devel libXrender-devel libXrandr-devel libressl-devel libX11-devel"
|
|
short_desc="A multiplatform 2D and 3D engine"
|
|
maintainer="Nick Hahn <nick.hahn@hotmail.de>"
|
|
license="MIT"
|
|
homepage="https://www.godotengine.org/"
|
|
distfiles="https://github.com/godotengine/${pkgname}/archive/${version}-stable.tar.gz"
|
|
checksum=15bc91dcbc92fe49624118678fcab119ff332dc295b25f4921700a4ee498b651
|
|
# Godot contains private copies of libraries
|
|
# that already have been packaged elsewhere.
|
|
make_build_args="use_llvm=yes platform=x11 tools=yes target=release_debug colored=yes pulseaudio=no"
|
|
nocross="https://build.voidlinux.eu/builders/armv7l_builder/builds/6342/steps/shell_3/logs/stdio"
|
|
|
|
# Specifing nopie=yes crashes clang, because -no-pie is not implemented,
|
|
# only -no-pie is
|
|
CFLAGS+=" -fPIE -fPIC"
|
|
LDFLAGS+=" -pie"
|
|
|
|
post_extract() {
|
|
sed -i -e "/openssl_version =/,+4d" platform/x11/detect.py
|
|
sed -i -e 's/#ifdef CRASH_HANDLER_ENABLED/#if defined(CRASH_HANDLER_ENABLED) \&\& defined(__GLIBC__)/' platform/x11/crash_handler_x11.cpp
|
|
}
|
|
|
|
pre_build() {
|
|
export CXXFLAGS=" $CXXFLAGS "
|
|
}
|
|
|
|
do_install() {
|
|
vlicense LICENSE.txt
|
|
vinstall ${FILESDIR}/godot.desktop 644 /usr/share/applications/
|
|
vinstall ${wrksrc}/logo.png 644 /usr/share/pixmaps/ godot.png
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
x86_64*|aarch64*) vbin bin/godot.x11.opt.tools.64.llvm godot;;
|
|
*) vbin bin/godot.x11.opt.tools.32.llvm godot;;
|
|
esac
|
|
}
|