blob: 29f0c1b74d1752129ec9e9eaba9696e202e00705 (
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
# Maintainer: Alexandre Bouvier <contact@amb.tf>
_pkgname=azahar
pkgname=$_pkgname-git
pkgver=2120.rc1.r63.g71c9c0c
pkgrel=1
pkgdesc="Nintendo 3DS emulator based on Citra"
arch=('x86_64')
url="https://azahar-emu.org/"
license=('GPL-2.0-or-later')
depends=(
'crypto++'
'enet'
'gcc-libs'
'glibc'
'glslang'
'hicolor-icon-theme'
'qt6-base'
'qt6-multimedia'
'sdl2'
)
makedepends=(
'catch2'
'cmake'
'cpp-jwt'
'cubeb'
'ffmpeg4.4'
'fmt'
'git'
'libbacktrace'
'libinih'
'libusb'
'nlohmann-json'
'openal'
'openssl'
'qt6-tools'
'rapidjson'
'robin-map'
'spirv-headers'
'vulkan-headers'
'vulkan-memory-allocator'
'zstd'
'zydis'
)
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
source=(
"$_pkgname::git+https://github.com/azahar-emu/azahar.git"
"$_pkgname-boost::git+https://github.com/azahar-emu/ext-boost.git"
"$_pkgname-compatibility-list::git+https://github.com/azahar-emu/compatibility-list.git"
"$_pkgname-discord-rpc::git+https://github.com/azahar-emu/discord-rpc.git"
"$_pkgname-dynarmic::git+https://github.com/azahar-emu/dynarmic.git"
"$_pkgname-mcl::git+https://github.com/azahar-emu/mcl.git"
"$_pkgname-sirit::git+https://github.com/azahar-emu/sirit.git"
"$_pkgname-soundtouch::git+https://github.com/azahar-emu/soundtouch.git"
"dds-ktx::git+https://github.com/septag/dds-ktx.git"
"faad2::git+https://github.com/knik0/faad2.git"
"lodepng::git+https://github.com/lvandeve/lodepng.git"
"nihstro::git+https://github.com/neobrain/nihstro.git"
"teakra::git+https://github.com/wwylele/teakra.git"
"xbyak::git+https://github.com/herumi/xbyak.git"
)
b2sums=(
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
)
pkgver() {
cd $_pkgname
git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd $_pkgname
git config submodule.boost.url ../$_pkgname-boost
git config submodule.compatibility-list.url ../$_pkgname-compatibility-list
git config submodule.dds-ktx.url ../dds-ktx
git config submodule.discord-rpc.url ../$_pkgname-discord-rpc
git config submodule.dynarmic.url ../$_pkgname-dynarmic
git config submodule.faad2.url ../faad2
git config submodule.lodepng.url ../lodepng
git config submodule.nihstro.url ../nihstro
git config submodule.sirit.url ../$_pkgname-sirit
git config submodule.soundtouch.url ../$_pkgname-soundtouch
git config submodule.teakra.url ../teakra
git config submodule.xbyak.url ../xbyak
git -c protocol.file.allow=always submodule update
cd externals/dynarmic
git config submodule.mcl.url ../../../$_pkgname-mcl
git -c protocol.file.allow=always submodule update
# fix for missing submodules
sed -i '/check_submodules_present()/d' ../../CMakeLists.txt
}
build() {
local options=(
-D CITRA_USE_PRECOMPILED_HEADERS=OFF
-D CITRA_WARNINGS_AS_ERRORS=OFF
-D CMAKE_BUILD_TYPE=Release
-D CMAKE_C_FLAGS_RELEASE="-DNDEBUG"
-D CMAKE_CXX_FLAGS_RELEASE="-DNDEBUG"
-D CMAKE_INCLUDE_PATH="/usr/include/ffmpeg4.4"
-D CMAKE_INSTALL_PREFIX=/usr
-D DISABLE_SYSTEM_BOOST=ON
-D DISABLE_SYSTEM_CPP_HTTPLIB=ON
-D DISABLE_SYSTEM_DYNARMIC=ON
-D DISABLE_SYSTEM_LODEPNG=ON
-D DISABLE_SYSTEM_SOUNDTOUCH=ON
-D DISABLE_SYSTEM_XBYAK=ON
-D ENABLE_LTO=OFF
-D ENABLE_QT_TRANSLATION=ON
-D ENABLE_TESTS="$CHECKFUNC"
-D SIRIT_USE_SYSTEM_SPIRV_HEADERS=ON
-D USE_DISCORD_PRESENCE=ON
-D USE_SYSTEM_LIBS=ON
-Wno-dev
)
cd $_pkgname
cmake "${options[@]}" -B build
cmake --build build
}
check() {
cd $_pkgname
ctest --output-on-failure --test-dir build
}
package() {
depends+=(
'libbacktrace.so'
'libcrypto.so'
'libcubeb.so'
'libfmt.so'
'libopenal.so'
'libssl.so'
'libusb-1.0.so'
'libzstd.so'
'libZydis.so'
)
cd $_pkgname
# shellcheck disable=SC2154
DESTDIR="$pkgdir" cmake --install build
}
|