blob: 43d4e1ec8973b3a7892e3891803bf1d0060e0203 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# shellcheck shell=bash disable=SC2034 disable=SC2154
# Maintainer: Lucas Melo <luluco250 at gmail dot com>
pkgname=sonic2013-git
pkgver=r953.b78db1b
pkgrel=1
pkgdesc='A full decompilation of Sonic 1 & 2 (2013).'
arch=('any')
url='https://github.com/Rubberduckycooly/Sonic-1-2-2013-Decompilation'
license=('custom:RSDKv3/4 Decompilation Source Code License v1')
makedepends=('git' 'cmake' 'pkg-config')
depends=('glew' 'sdl2' 'libogg' 'libvorbis')
provides=(sonic2013)
source=(
"git+${url}.git"
'git+https://github.com/leethomason/tinyxml2.git'
'template-launcher'
'template.desktop'
)
sha256sums=(
'SKIP'
'SKIP'
'53ea1912492a15bf54f6dba1859aaf0f9ca0c01615f021faa8a3c67449b1fd55'
'55df140227c69094fac5ee7dd1b8a8e8beef9abe4072dee00e1688a0b9966353'
)
install=sonic2013.install
_safe_cd() {
if ! cd "$1"; then
>&2 echo "Directory '$1' not found"
exit 1
fi
}
pkgver() {
_safe_cd "$srcdir/Sonic-1-2-2013-Decompilation"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
_safe_cd "$srcdir/Sonic-1-2-2013-Decompilation"
git submodule init
git config submodule.dependencies/all/tinyxml2.url "$srcdir/tinyxml2"
git -c protocol.file.allow=always submodule update
}
build() {
_safe_cd "$srcdir/Sonic-1-2-2013-Decompilation"
cmake -B build
cmake --build build --config release
_safe_cd "$srcdir"
for i in 1 2; do
sed "s/GAME/sonic$i/" template-launcher > sonic$i-launcher
sed "s/NAME/Sonic $i/;s/EXEC/sonic$i-launcher/" template.desktop > sonic$i.desktop
done
}
package() {
for i in 1 2; do
install -Dm755 sonic$i-launcher "$pkgdir/usr/bin/sonic$i-launcher"
install -Dm644 sonic$i.desktop "$pkgdir/usr/share/applications/sonic$i.desktop"
done
_safe_cd "$srcdir/Sonic-1-2-2013-Decompilation"
install -Dm755 ./build/RSDKv4 "$pkgdir/usr/bin/RSDKv4"
install -Dm644 ./LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|