2015-06-19 18:10:01 +02:00
|
|
|
# Maintainer: Cristian Porras <porrascristian@gmail.com>
|
|
|
|
# Contributor: Matthew Bentley <matthew@mtbentley.us>
|
|
|
|
|
|
|
|
_pkgname=godot
|
|
|
|
pkgname=${_pkgname}-git
|
2018-06-26 19:26:43 +02:00
|
|
|
pkgver=3.1.dev
|
2019-03-15 15:07:00 +01:00
|
|
|
pkgrel=2
|
2016-05-03 04:24:30 +02:00
|
|
|
pkgdesc="Godot Game Engine: An advanced, feature packed, multi-platform 2D and 3D game engine."
|
2015-06-19 18:10:01 +02:00
|
|
|
url="http://www.godotengine.org"
|
|
|
|
license=('MIT')
|
|
|
|
arch=('i686' 'x86_64')
|
2019-03-15 15:07:00 +01:00
|
|
|
makedepends=('git' 'scons' 'pulseaudio' 'clang' 'pkgconf')
|
2018-06-26 19:26:43 +02:00
|
|
|
depends=('glu' 'libxcursor' 'libxinerama' 'alsa-lib' 'freetype2' 'mesa')
|
2015-06-19 18:10:01 +02:00
|
|
|
optdepends=()
|
|
|
|
conflicts=("godot")
|
|
|
|
provides=("godot")
|
|
|
|
_arch=''
|
|
|
|
if test "$CARCH" == x86_64; then
|
|
|
|
_arch=('64')
|
|
|
|
else
|
|
|
|
_arch=('32')
|
|
|
|
fi
|
|
|
|
|
|
|
|
source=(
|
2015-12-21 22:59:04 +01:00
|
|
|
"git://github.com/godotengine/${_pkgname}.git#branch=master"
|
2015-06-19 18:10:01 +02:00
|
|
|
godot.desktop
|
|
|
|
icon.png
|
|
|
|
)
|
|
|
|
sha256sums=(
|
|
|
|
'SKIP'
|
2018-02-04 23:41:05 +01:00
|
|
|
'2ae039a3879b23e157f2125e0b326fa1ef66d56bfd596c790e8943d27652e93a'
|
|
|
|
'99f9d17c4355b274ef0c08069cf6e756a98cd5c9d9d22d1b39f79538134277e1'
|
2015-06-19 18:10:01 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd "${srcdir}/${_pkgname}"
|
2016-11-29 02:30:42 +01:00
|
|
|
_major=$(cat version.py|grep "major" | sed 's/major = //')
|
|
|
|
_minor=$(cat version.py|grep "minor" | sed 's/minor = //')
|
2015-06-22 19:30:45 +02:00
|
|
|
_revision=$(printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)")
|
|
|
|
echo "${_major}.${_minor}.${_revision}"
|
|
|
|
|
2015-06-19 18:10:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}"/${_pkgname}
|
|
|
|
sed -n '/\/* Copyright/,/IN THE SOFTWARE./p' main/main.cpp | sed 's/\/\*//' | sed 's/\*\///' > LICENSE
|
2020-03-26 22:04:48 +01:00
|
|
|
scons platform=linuxbsd target=release_debug use_llvm=yes -j$(nproc)
|
2015-06-19 18:10:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
|
|
|
|
cd "${srcdir}"
|
|
|
|
|
|
|
|
install -Dm644 godot.desktop "${pkgdir}"/usr/share/applications/godot.desktop
|
|
|
|
install -Dm644 icon.png "${pkgdir}"/usr/share/pixmaps/godot.png
|
|
|
|
|
|
|
|
cd "${srcdir}"/${_pkgname}
|
|
|
|
|
2017-11-03 00:16:34 +01:00
|
|
|
install -D -m755 bin/godot.x11.opt.tools.${_arch}.llvm "${pkgdir}"/usr/bin/godot
|
2015-06-19 18:10:01 +02:00
|
|
|
install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/godot-git/LICENSE
|
|
|
|
}
|
|
|
|
|