Skip to content

Commit 1557c7f

Browse files
authored
Create SBUILD_latest.yaml
1 parent a3c0187 commit 1557c7f

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

SBUILD_latest.yaml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
#!/SBUILD
2+
#SELF: https://raw.githubusercontent.com/psadi/ghostty-appimage/refs/heads/main/SBUILD_latest.yaml
3+
_disabled: false
4+
5+
pkg: "ghostty"
6+
pkg_id: "github.com.psadi.ghostty-appimage.stable"
7+
pkg_type: "appimage"
8+
category:
9+
- "TerminalEmulator"
10+
description: "Fast, native, feature-rich terminal emulator pushing modern features"
11+
distro_pkg:
12+
archlinux:
13+
aur:
14+
- "ghostty-git"
15+
extra:
16+
- "ghostty"
17+
homebrew:
18+
- "ghostty"
19+
nixpkgs:
20+
- "ghostty"
21+
homepage:
22+
- "https://ghostty.org"
23+
- "https://github.com/ghostty-org/ghostty"
24+
maintainer:
25+
- "psadi (https://github.com/psadi)"
26+
note:
27+
- "Fetched from Pre Built Community Created AppImage. Check/Report @ https://github.com/psadi/ghostty-appimage"
28+
license:
29+
- id: "MIT"
30+
url: "https://github.com/ghostty-org/ghostty/raw/918ccdba5cc65ccd1fb48a54c71306d869299441/LICENSE"
31+
provides:
32+
- "ghostty"
33+
repology:
34+
- "ghostty"
35+
src_url:
36+
- "https://github.com/psadi/ghostty-appimage"
37+
tag:
38+
- "terminal"
39+
x_exec:
40+
host:
41+
- "aarch64-Linux"
42+
- "x86_64-Linux"
43+
shell: "bash"
44+
pkgver: |
45+
curl -qfsSL "https://api.gh.pkgforge.dev/repos/psadi/ghostty-appimage/releases/latest?per_page=100" | jq -r '.tag_name'
46+
run: |
47+
#Download
48+
case "$(uname -m)" in
49+
aarch64)
50+
soar dl "https://github.com/psadi/ghostty-appimage@${PKGVER}" --match "appimage,aarch64" --exclude "x64,x86,zsync" -o "./${PKG}" --yes
51+
;;
52+
x86_64)
53+
soar dl "https://github.com/psadi/ghostty-appimage@${PKGVER}" --match "appimage,x86_64" --exclude "aarch64,arm,zsync" -o "./${PKG}" --yes
54+
;;
55+
esac

0 commit comments

Comments
 (0)