2026-09-01 08:00:05 +02:00
2026-09-01 08:00:05 +02:00
2026-09-01 08:00:05 +02:00
2026-09-01 08:00:05 +02:00
2026-09-01 08:00:05 +02:00

kama-packages

The central package (recipe) repository for Keru OS, built by Kama.

Every package is a plain POSIX shell script that describes how to compile and install one piece of software. Nothing more — no manifests, no metadata files, no build databases. The recipe is the package.

Layout

TEMPLATE.sh      starting point for new recipes
busybox.sh       easy-tier example (autotools-ish, static build)
runit.sh         advanced-tier example (custom fetch/patch, pkg_post)

Recipe syntax (quick)

name=busybox
version=1.36.1
url=https://busybox.net/downloads/busybox-1.36.1.tar.bz2
deps=()                  # build-time deps (AUR-style: built then purged)

build()   { make defconfig; make -j"$JOBS"; }   # configure + compile
install() { make install CONFIG_PREFIX="$pkgdir"; }  # stage into $pkgdir

Kama handles download, extraction, staging, and temp-dep cleanup. For advanced needs (custom fetch, patches, post-install hooks, splitting), override pkg_fetch, pkg_post, or pkg_split. See the full format spec.

Contributing

  1. Copy TEMPLATE.sh to <name>.sh.
  2. Fill in name, version, url, and the build/install functions.
  3. Verify with sh -n <name>.sh and by building it (kama make <name>).
  4. Open a pull request.

Every package a kiln-load — fire it from source.

S
Description
Kama recipe repository — one shell file per package for Keru OS.
Readme AGPL-3.0
42 KiB
Languages
Shell 100%