blob: 8756050a712c22ecc5695175f8e8de92fc036289 (
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
|
# Maintainer: PerilousBooklet <raffaele.orabona at protonmail dot com>
# Contributor: dalz <aur @t alsd d0t eu>
# Contributor: Jorge Araya Navarro <jorgejavieran@yahoo.com.mx>
# Contributor: Cristian Porras <porrascristian@gmail.com>
# Contributor: Matthew Bentley <matthew@mtbentley.us>
pkgname=godot-voxel
pkgver=4.0.3
pkgrel=4
pkgdesc="A fork of Godot with the addition of the voxel tools made by Zylann."
url="https://voxel-tools.readthedocs.io/"
license=('MIT')
arch=('x86_64')
makedepends=('scons' 'git')
depends=('pkgconf' 'libxcursor' 'libxinerama' 'libxi' 'libxrandr' 'mesa' 'glu' 'libglvnd' 'alsa-lib' 'pulse-native-provider')
source=("godot::git+https://github.com/godotengine/godot.git#commit=5222a99f5d38cd5346254cefed8f65315bca4fcb"
"voxel::git+https://github.com/Zylann/godot_voxel.git#commit=3e2d236a0eb85e7bb7381d7f465fecfb42fe19e8"
"$pkgname.desktop" )
sha256sums=('239acace0bb7260eaf11a50be4c61f0b82c7e245fbff4b6a52f2d8fc9e6f1a86'
'e5aaa90d6e9c4b0365ac95affb012789a32191157bf795ae7b41af5a1645cc0b'
'c244469ba0c93568915ae12364dd6376e66b9f7db1d5471c10c077a92fdf1964')
prepare() {
ln -s "$srcdir/voxel" "$srcdir/godot/modules/voxel"
# Source: https://github.com/Zylann/godot_voxel/commit/13567b4fb8f20ca0b5dcf71e76c9c7a6452dc5ca
cd voxel
git cherry-pick -n 13567b4fb8f20ca0b5dcf71e76c9c7a6452dc5ca
}
build() {
cd $srcdir/godot
scons platform=linuxbsd colored=yes
}
package() {
install -Dm644 $srcdir/$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop
install -Dm644 $srcdir/godot/icon.svg $pkgdir/usr/share/icons/hicolor/scalable/apps/$pkgname.svg
install -Dm755 $srcdir/godot/bin/godot.linuxbsd.editor.x86_64 $pkgdir/usr/bin/$pkgname
install -Dm644 $srcdir/godot/LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
install -Dm644 $srcdir/godot/misc/dist/linux/godot.6 "$pkgdir"/usr/share/man/man6/$pkgname.6
}
|