Package recipes for the Gozjaro Linux base system.
Built with gozpak from LFS 12.3 sources.
echo 'https://github.com/Gozjaro/gozjaro-repo/releases/download/stable' > /etc/gozpak/repos.conf
gozpak sync
gozpak get curlPoint GOZPAK_PATH at this directory:
export GOZPAK_PATH=/path/to/gozjaro-repo
gozpak build zlib
gozpak install zlibexport GOZPAK_PATH=/path/to/gozjaro-repo
gozpak repo-build -f packages.list -o ./repogozpak repo-index ./repo./scripts/repo-upload.sh ./repo stableThis uploads all tarballs + repo.index as assets on a GitHub Release
tagged stable. Clients point GOZPAK_REPOS at:
https://github.com/Gozjaro/gozjaro-repo/releases/download/stable
Requires GitHub CLI (gh) authenticated.
Recipes ship with SKIP checksums. To generate real SHA256 hashes:
# Single package
gozpak checksum zlib
# All packages
for pkg in */; do [ -f "$pkg/build" ] && gozpak checksum "${pkg%/}"; doneEach directory is a package recipe:
| File | Required | Description |
|---|---|---|
build |
yes | Shell script; $1 = DESTDIR |
version |
yes | <version> <release> |
depends |
no | One dependency per line |
sources |
no | Source URLs (VERSION is substituted) |
checksums |
no | SHA256 per source, or SKIP |
meta |
no | Metadata (type, description, license) |
85 packages covering the full LFS 12.3 base system, gozpak itself, networking tools (curl, wget, openssh, git, rsync), and disk utilities (parted, dosfstools, libarchive).
MIT