blob: 313b1c8b98de6d59b863e9d92e8f972cec45051e (
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
46
47
48
49
|
# Maintainer: Daniela <pikalp32@gmail.com> | https://github.com/danielah05
# Contributor: Reylyer <reylyercross@gmail.com> | https://github.com/Reylyer
# Package name
pkgname=gamemaker-beta-bin
# Version
pkgver=2024.1100.0.686
pkgrel=1
# Generic
pkgdesc="Make a game with GameMaker, the best free video game engine. Perfect for beginners and professionals."
arch=('x86_64')
url="https://gamemaker.io"
license=('custom')
# Dependencies
depends=(
'linuxdeploy'
'appimagetool-bin'
'clang'
'openal'
'unzip'
'zip'
)
# Package relations
provides=('gamemaker-beta')
conflicts=('gamemaker-beta')
# Others
options=(!strip)
# Sources
# https://gms.yoyogames.com/GameMaker-Beta-2024.1100.0.686.deb
source=(
"https://gms.yoyogames.com/GameMaker-Beta-${pkgver}.deb"
"LICENSE.txt"
)
sha256sums=(
'e3682b5ca28edba2da08567cd2814b0acd05f38cfffb07959ea30c8657d8bfbb'
'9ebe45546ac7bb43156c62f42947ccaf660f96cd4fcc684f42df49754aaeac51'
)
package() {
bsdtar -xf "${srcdir}/data.tar.xz" -C "${pkgdir}"
install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
}
|