blob: f3494c480dfa36d33080de5b140ae25e3ae00313 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
# Maintainer: AltoXorg <atrl101 AT yahoo DOT com>
_reponame=2ship2harkinian
_lus_commit=a8bdcab363571038bb71f195f21ec3e9033a220d
_ZAPDTR_commit=684f21a475dcfeee89938ae1f4afc42768a3e7ef
_OTRExporter_commit=32e088e28c8cdd055d4bb8f3f219d33ad37963f3
pkgbase=2s2h
pkgname=(2s2h 2s2h-otr-exporter)
pkgver=3.0.2
pkgrel=1
arch=("x86_64" "i686" "armv7h" "aarch64")
#url="https://shipofharkinian.com/"
url="https://github.com/HarbourMasters/${_reponame}"
_depends_2s2h=("sdl2" "zenity" "libpng" "libogg" "libvorbis" "opus" "opusfile")
_depends_2s2h_otr_exporter=("libpng")
_depends_lus=("libzip" "fmt" "spdlog" "tinyxml2")
depends=("${_depends_2s2h[@]}" "${_depends_2s2h_otr_exporter[@]}" "${_depends_lus[@]}")
makedepends=("git" "cmake" "ninja" "python" "curl" "lsb-release" "boost" "nlohmann-json")
source=("${_reponame}-${pkgver}.tar.gz::https://github.com/HarbourMasters/${_reponame}/archive/refs/tags/${pkgver}.tar.gz"
"libultraship-${_lus_commit:0:8}.tar.gz::https://github.com/Kenix3/libultraship/archive/${_lus_commit}.tar.gz"
"OTRExporter-${_OTRExporter_commit:0:8}.tar.gz::https://github.com/louist103/OTRExporter/archive/${_OTRExporter_commit}.tar.gz"
"ZAPDTR-${_ZAPDTR_commit:0:8}.tar.gz::https://github.com/louist103/ZAPDTR/archive/${_ZAPDTR_commit}.tar.gz"
"2s2h.desktop")
sha256sums=('cfb2892e36596b70bc7ce7353c3363983462a2406fae0f471de7ca32a205c63b'
'7361e5283faf39747e5eab010a4ae37dbc544bbd9e04d034179fca475f71cbe0'
'91a863f8899f2ebfc7868ccad4b5982ae416799c76358ce5b2c0edc11e42a672'
'8016f735f9ef4e177384b0e51f243e374bf2f67ba66bdd5d21af8b185aed1635'
'8c8525a09a94c30106f44219c0f0239789d5c53cd6e30c7748b55f8d83cee24b')
# -- Per-repo submodules
_main_submodules=(
libultraship
OTRExporter
ZAPDTR
)
SHIP_PREFIX=/opt/2s2h
_is_debug() {
for opt in "${OPTIONS[@]}"; do
if [ "$opt" = debug ]; then
return 0
fi
done
return 1
}
prepare() {
cd "${srcdir}/${_reponame}-${pkgver}"
rm -r libultraship ZAPDTR OTRExporter
cp -r ../libultraship-${_lus_commit} libultraship
#cp -r ../libultraship-${_lus_tag} libultraship
cp -r ../ZAPDTR-${_ZAPDTR_commit} ZAPDTR
cp -r ../OTRExporter-${_OTRExporter_commit} OTRExporter
}
build() {
cd "${srcdir}/${_reponame}-${pkgver}"
if _is_debug; then
BUILD_TYPE=Debug
else
BUILD_TYPE=Release
fi
export CFLAGS="${CFLAGS/-Werror=format-security/}"
export CXXFLAGS="${CXXFLAGS/-Werror=format-security/}"
# Compile error fix, might be committed to upstream
CFLAGS+=" -Wno-return-mismatch"
cmake . \
-Bbuild \
-GNinja \
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DNON_PORTABLE=On \
-DCMAKE_INSTALL_PREFIX=$SHIP_PREFIX
#-DBUILD_REMOTE_CONTROL=1
cmake --build build --target ZAPD --config $BUILD_TYPE $NINJAFLAGS
cmake --build build --target Generate2ShipOtr --config $BUILD_TYPE $NINJAFLAGS
cmake --build build --config $BUILD_TYPE $NINJAFLAGS
}
package_2s2h() {
pkgdesc="An unofficial port of The Legend of Zelda Majora's Mask"
depends=("${_depends_2s2h[@]}" "${_depends_lus[@]}")
license=("CC0-1.0")
install=2s2h.install
cd "${srcdir}/${_reponame}-${pkgver}"
DESTDIR="${pkgdir}" cmake --install build --component ship
DESTDIR="${pkgdir}" cmake --install build --component 2s2h
install -dm755 "${pkgdir}/usr/bin/"
ln -s "${SHIP_PREFIX}/2s2h.elf" "${pkgdir}/usr/bin/2s2h"
install -Dm644 "${srcdir}/2s2h.desktop" -t "${pkgdir}/usr/share/applications"
install -Dm644 mm/linux/2s2hIcon.png "${pkgdir}/usr/share/pixmaps/2s2h.png"
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/2s2h/LICENSE"
# Copy game documentation
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/2s2h/README.md"
#cp -r docs "${pkgdir}/usr/share/doc/2s2h/docs"
}
package_2s2h-otr-exporter() {
pkgdesc="OTR generation tools for 2S2H. Includes asset XML files needed for generation"
license=("MIT")
depends=("${_depends_2s2h_otr_exporter[@]}" "${_depends_lus[@]}")
cd "${srcdir}/${_reponame}-${pkgver}"
DESTDIR="${pkgdir}" cmake --install build --component extractor
install -Dm644 "OTRExporter/LICENSE" "${pkgdir}/usr/share/licenses/2s2h-otr-exporter/LICENSE"
}
|