godot: update to 3.0.4 (#386)

This commit is contained in:
codingHahn 2018-06-28 14:57:39 +02:00 committed by cr6git
parent f61f68a4ae
commit 8ba741fc8e
2 changed files with 3 additions and 14 deletions

View file

@ -1,11 +0,0 @@
--- drivers/unix/os_unix.cpp.orig 2018-04-30 09:53:04.627075270 +0200
+++ drivers/unix/os_unix.cpp 2018-04-30 09:53:16.892670422 +0200
@@ -235,7 +235,7 @@ OS::TimeZoneInfo OS_Unix::get_time_zone_
void OS_Unix::delay_usec(uint32_t p_usec) const {
- struct timespec rem = { p_usec / 1000000, (p_usec % 1000000) * 1000 };
+ struct timespec rem = { (time_t)(p_usec / 1000000), (long)(p_usec % 1000000) * 1000 };
while (nanosleep(&rem, &rem) == EINTR) {
}
}

View file

@ -1,7 +1,7 @@
# Template file for 'godot'
pkgname=godot
version=3.0.2
revision=2
version=3.0.4
revision=1
wrksrc="${pkgname}-${version}-stable"
build_style=scons
hostmakedepends="scons pkg-config clang"
@ -13,7 +13,7 @@ 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
checksum=ebd2164ecde94c5276fe0420b8b232b13f255c420a1dca6b34e511e17292164e
# 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"