AnyLinux AppImages
300+ AppImages that truly work on any Linux system — including musl-libc, non-FHS, and older distros. Zero host dependencies required.
An ecosystem of tools and infrastructure for distributing and installing self-contained packages on any Linux distribution

Most AppImages from PkgForge are AnyLinux AppImages — they bundle all dependencies and don't rely on host libraries. Unlike traditional AppImages:
/bin/sh and a writable /tmp300+ applications available and growing. See the AppImage format page for details.
Install Soar, the package manager:
curl -fsSL "https://soar.qaidvoid.dev/install.sh" | shThen install packages:
soar install firefox # Install a package
soar search ripgrep # Search for packages
soar update # Update all packages
soar remove firefox # Remove a packageWrite an SBUILD recipe to package any application:
#!/SBUILD
_disabled: false
pkg: "fzf"
pkg_id: "junegunn.fzf"
pkg_type: "static"
ghcr_pkg: "junegunn/fzf"
description: "A command-line fuzzy finder"
homepage:
- "https://github.com/junegunn/fzf"
license:
- "MIT"
provides:
- "fzf"
src_url:
- "https://github.com/junegunn/fzf"
x_exec:
host:
- "aarch64-linux"
- "x86_64-linux"
shell: "sh"
pkgver: |
VERSION=$(curl -qfsSL "https://api.github.com/repos/junegunn/fzf/releases/latest" | jq -r '.tag_name')
echo "${VERSION#v}"
run: |
soar dl "github:junegunn/fzf@v${PKGVER}" --glob "*linux_${ARCH_ALT}.tar.gz" -o "./fzf.tar.gz" --yes
tar -xf "fzf.tar.gz" -C "$SBUILD_TMPDIR/"
mv "$SBUILD_TMPDIR/fzf" "$SBUILD_OUTDIR/$PKG"See Creating Packages for the full guide, or read the SBUILD Specification.