blob: 907820cfa7e50f718c65d86eba9089c5d3e0c97f (
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
|
# Maintainer: Alexandre Bouvier <contact@amb.tf>
_pkgname=cemu
pkgname=$_pkgname-git
pkgver=2.5.r0.gdd0af0a5
pkgrel=1
pkgdesc="Nintendo Wii U emulator"
arch=('x86_64')
url="https://cemu.info/"
license=('MPL-2.0')
depends=(
'gcc-libs'
'glibc'
'glslang>=14'
'hicolor-icon-theme'
'libx11'
'pugixml'
'sdl2'
'wxwidgets-gtk3>=3.2'
)
makedepends=(
'bluez-libs'
'boost'
'cmake>=3.21.1'
'cubeb'
'curl'
'fmt>=9'
'git'
'glib2'
'glm'
'glu'
'gtk3'
'hidapi'
'libgl'
'libpng'
'libusb'
'libzip'
'nasm'
'openssl'
'rapidjson'
'vulkan-headers>=1:1.3.225'
'wayland'
'wayland-protocols'
'zarchive>=0.1.2'
'zlib'
'zstd'
)
provides=("$_pkgname")
conflicts=("$_pkgname")
source=(
"$_pkgname::git+https://github.com/cemu-project/Cemu.git"
'imgui::git+https://github.com/ocornut/imgui.git'
)
b2sums=(
'SKIP'
'SKIP'
)
pkgver() {
cd $_pkgname
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd $_pkgname
git config submodule.dependencies/imgui.url ../imgui
git -c protocol.file.allow=always submodule update
sed -i '/CMAKE_INTERPROCEDURAL_OPTIMIZATION/d' CMakeLists.txt
sed -i '/FMT_HEADER_ONLY/d' src/Common/precompiled.h
}
build() {
cmake -S $_pkgname -B build \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_FLAGS_RELEASE="-DNDEBUG" \
-DCMAKE_CXX_FLAGS_RELEASE="-DNDEBUG" \
-DENABLE_VCPKG=OFF \
-Wno-dev
cmake --build build
}
package() {
depends+=(
'libbluetooth.so'
'libboost_program_options.so'
'libcrypto.so'
'libcubeb.so'
'libcurl.so'
'libfmt.so'
'libgdk-3.so'
'libgobject-2.0.so'
'libgtk-3.so'
'libhidapi-hidraw.so'
'libssl.so'
'libusb-1.0.so'
'libwayland-client.so'
'libz.so'
'libzarchive.so'
'libzip.so'
'libzstd.so'
)
cd $_pkgname
# shellcheck disable=SC2154
install -d "$pkgdir"/usr/{bin,share/Cemu}
mv bin/Cemu_release "$pkgdir"/usr/bin/Cemu
cp -dr --no-preserve=ownership -t "$pkgdir"/usr/share/Cemu bin/*
install -Dm644 -t "$pkgdir"/usr/share/applications dist/linux/info.cemu.Cemu.desktop
install -Dm644 -t "$pkgdir"/usr/share/icons/hicolor/128x128/apps dist/linux/info.cemu.Cemu.png
install -Dm644 -t "$pkgdir"/usr/share/metainfo dist/linux/info.cemu.Cemu.metainfo.xml
}
|