-
Notifications
You must be signed in to change notification settings - Fork 1
/
appimage.stable.yaml
57 lines (56 loc) · 1.31 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
#!/SBUILD
_disabled: false
pkg: "zograscope"
pkg_id: "github.com.xaizek.zograscope"
pkg_type: "appimage"
app_id: "github.com.xaizek.zograscope"
build_util:
- "curl#bin"
- "jq#bin"
category:
- "Utility"
description: "Mainly a syntax-aware diff that also provides a number of additional tools."
distro_pkg:
archlinux:
aur:
- "zograscope-git"
homepage:
- "https://github.com/xaizek/zograscope"
maintainer:
- "Azathothas (https://github.com/Azathothas)"
license:
- "AGPL"
src_url:
- "https://github.com/xaizek/zograscope"
tag:
- "agpl"
- "agplv3"
- "c"
- "command-line-app"
- "command-line-tool"
- "command-line-tools"
- "cpp"
- "cpp11"
- "diff"
- "diffing"
- "make"
- "makefile"
- "qt"
- "qt5"
- "qt5-gui"
- "syntax-aware"
x_exec:
shell: "bash"
pkgver: |
curl -qfsSL "https://api.gh.pkgforge.dev/repos/xaizek/zograscope/releases?per_page=100" | jq -r '[.[] | select(.draft == false and .prerelease == true)] | .[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/xaizek/zograscope" --match "appimage" --exclude "aarch64,arm,zsync" -o "./${SBUILD_PKG}" --yes
;;
esac