blob: caa36e8c9c3d7c8e9d09b7764c17d94cb38b8907 (
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
|
# Maintainer: Daniel Bermond <dbermond@archlinux.org>
pkgname=gopher64
pkgver=1.0.14
pkgrel=1
pkgdesc='A Nintendo64 emulator'
arch=('x86_64')
url='https://github.com/gopher64/gopher64/'
license=('GPL-3.0-only')
depends=(
'bzip2'
'gcc-libs'
'glibc'
'hicolor-icon-theme'
'vulkan-icd-loader'
'xz')
makedepends=(
'alsa-lib'
'cargo'
'clang'
'cmake'
'dbus'
'git'
'hidapi'
'icoutils'
'jack2'
'libdecor'
'libdrm'
'libgl'
'libgles'
'libibus'
'libpipewire'
'libpulse'
'libunwind'
'liburing'
'libusb'
'libx11'
'libxcursor'
'libxext'
'libxfixes'
'libxinerama'
'libxkbcommon'
'libxrandr'
'libxrender'
'libxss'
'mesa'
'sndio'
'systemd-libs'
'vulkan-headers'
'wayland'
'wayland-protocols')
source=("git+https://github.com/gopher64/gopher64.git#tag=v${pkgver}"
'git+https://github.com/Themaister/parallel-rdp-standalone.git')
sha256sums=('bc3edb9175c973e4b49d682c684e28cd3132fefb0f08b48e5a5b1d1f554abadf'
'SKIP')
prepare() {
git -C gopher64 submodule init
git -C gopher64 config --local submodule.parallel-rdp/parallel-rdp-standalone.url "${srcdir}/parallel-rdp-standalone"
git -C gopher64 -c protocol.file.allow='always' submodule update
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" --manifest-path='gopher64/Cargo.toml'
icotool -x gopher64/data/icon.ico -o gopher64/data
}
build() {
export CFLAGS+=' -ffat-lto-objects'
export RUSTUP_TOOLCHAIN='stable'
export CARGO_TARGET_DIR='gopher64/target'
cargo build --release --frozen --manifest-path='gopher64/Cargo.toml'
}
check() {
export CFLAGS+=' -ffat-lto-objects'
export RUSTUP_TOOLCHAIN='stable'
export CARGO_TARGET_DIR='gopher64/target'
cargo test --frozen --manifest-path='gopher64/Cargo.toml'
}
package() {
find gopher64/target/release -maxdepth 1 -type f -executable -exec install -D -m755 -t "${pkgdir}/usr/bin" {} +
local _icon
local _res
while read -r -d '' _icon
do
_res="$(sed 's/\.png$//;s/^.*_//;s/x.*$//' <<< "$_icon")"
install -D -m644 "$_icon" "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/gopher64.png"
done < <(find gopher64/data -maxdepth 1 -type f -name 'icon_*_*x*x*.png' -print0)
install -D -m644 gopher64/data/gopher64.png -t "${pkgdir}/usr/share/icons/hicolor/512x512/apps"
install -D -m644 gopher64/data/gopher64.svg -t "${pkgdir}/usr/share/icons/hicolor/scalable/apps"
}
|