-
Notifications
You must be signed in to change notification settings - Fork 1
/
appimage.stable.yaml
112 lines (111 loc) · 2.49 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
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
#!/SBUILD
_disabled: false
pkg: "wine"
pkg_id: "github.com.mmtrt.WINE_AppImage"
pkg_type: "appimage"
app_id: "github.com.mmtrt.WINE_AppImage"
build_util:
- "curl#bin"
- "jq#bin"
category:
- "Utility"
description: "null"
distro_pkg:
alpine:
- "wine"
- "wine-staging"
archlinux:
aur:
- "mingw-w64-wine"
- "wine-git"
- "wine-stable"
- "wine-stable-next"
- "wine-staging-git"
multilib:
- "wine"
- "wine-staging"
debian:
- "wine"
- "wine-development"
nixpkgs:
- "wine"
- "wine-staging"
- "wine64"
homepage:
- "http://fedoraproject.org/wiki/MinGW"
- "http://winehq.org"
- "http://www.winehq.com"
- "http://www.winehq.org"
- "https://github.com/wine-staging"
- "https://github.com/wine-staging/wine-staging"
- "https://gitlab.winehq.org/wine/wine"
- "https://gitlab.winehq.org/wine/wine-staging"
- "https://sourceforge.net/projects/wine"
- "https://wiki.winehq.org/MacOS"
- "https://wiki.winehq.org/Wine-Staging"
- "https://www.altlinux.org/Wine"
- "https://www.winehq.org"
maintainer:
- "Azathothas (https://github.com/Azathothas)"
license:
- "BSD"
- "BSD-2"
- "GNU LGPL"
- "GNU Lesser General Public License"
- "GNU Lesser General Public License version 2.1"
- "GPL-2.0-or-later"
- "IJG"
- "LGPL"
- "LGPL-2.0-or-later"
- "LGPL-2.1"
- "LGPL-2.1+"
- "LGPL-2.1-or-later"
- "LGPL2.1"
- "LGPLv2+"
- "LGPLv2.1"
- "MIT"
- "OPENLDAP"
- "ZLIB"
- "gsm"
- "lgpl2.1"
- "lgpl3"
- "libpng2"
- "libtiff"
src_url:
- "https://github.com/mmtrt/WINE_AppImage"
tag:
- "Applications/Emulators"
- "Applications/System"
- "Development/Libraries/C"
- "Emulators"
- "System/Emulators/PC"
- "app-emulation"
- "app:console"
- "debug"
- "emul32"
- "emulators"
- "extra/emulator"
- "fonts"
- "libs"
- "otherosfs"
- "programming.devel"
- "system"
- "system-tools"
- "universe/otherosfs"
- "utils"
- "virt"
x_exec:
shell: "bash"
pkgver: |
curl -qfsSL "https://api.gh.pkgforge.dev/repos/mmtrt/WINE_AppImage/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)
echo -e "\n[✗] aarch64 is Not Yet Supported\n"
exit 1
;;
x86_64)
soar dl "https://github.com/mmtrt/WINE_AppImage" --match "appimage" --exclude "aarch64,arm,zsync" -o "./${SBUILD_PKG}" --yes
;;
esac