-
Notifications
You must be signed in to change notification settings - Fork 1
/
appimage.stable.yaml
52 lines (51 loc) · 1.38 KB
/
appimage.stable.yaml
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
#!/SBUILD
_disabled: false
pkg: "bottlenose"
pkg_id: "github.com.quinton-ashley.bottlenose"
pkg_type: "appimage"
app_id: "github.com.quinton-ashley.bottlenose"
build_util:
- "curl#bin"
- "jq#bin"
category:
- "Utility"
description: "Nostlan is a game launcher for emulators!"
homepage:
- "https://github.com/quinton-ashley/bottlenose"
maintainer:
- "Azathothas (https://github.com/Azathothas)"
license:
- "GNU General Public License v3.0"
src_url:
- "https://github.com/quinton-ashley/bottlenose"
tag:
- "bsnes"
- "cemu"
- "cemu-launcher"
- "citra"
- "dolphin"
- "emulator-frontend"
- "game-launcher"
- "gamecube"
- "mame"
- "nintendo-switch"
- "rpcs3"
- "ryujinx"
- "video-game-emulators"
- "wii"
- "xenia"
- "yuzu"
x_exec:
shell: "bash"
pkgver: |
curl -qfsSL "https://api.gh.pkgforge.dev/repos/quinton-ashley/bottlenose/releases?per_page=100" | jq -r '[.[] | select(.draft == false and .prerelease == false)] | .[0].tag_name | gsub("\\s+"; "")' | tr -d '[:space:]'
run: |
#Download
case "$(uname -m)" in
aarch64)
soar dl "https://github.com/quinton-ashley/bottlenose" --match "appimage" --exclude "x86,x64,arm,zsync" -o "./${SBUILD_PKG}" --yes
;;
x86_64)
soar dl "https://github.com/quinton-ashley/bottlenose" --match "appimage" --exclude "aarch64,arm,zsync" -o "./${SBUILD_PKG}" --yes
;;
esac