Examples
SBUILD Examples
Minimal
#!/SBUILD ver @v1.0.0
pkg: "86box"
pkgver: "v4.2.1"
description: "Emulator of x86-based machines"
src_url:
- "https://github.com/86Box/86Box"
x_exec:
shell: "bash"
pkgver: |
curl -qfsSL "https://api.github.com/repos/86Box/86Box/releases/latest" | jq -r '.tag_name'
run: |
case "$(uname -m)" in
aarch64)
soar dl "https://github.com/86Box/86Box" --match "appimage,arm64" --exclude "x64,x86,zsync" -o "./${PKG}" --yes
;;
x86_64)
soar dl "https://github.com/86Box/86Box" --match "appimage,x86_64" --exclude "aarch64,arm,zsync" -o "./${PKG}" --yes
;;
esacFull Example
Rolling Build
For packages without versioned releases (nightly, git HEAD):
Last updated