Where source comes from, and where it waits.
Every Keru build is a network operation. Package recipes always come from the GitHub-hosted kama-packages repo; this page is about the other half — the source tarballs each recipe downloads, and the cache they pass through.
SOURCE_MIRROR — tried first when set; run a mirror of source tarballs and point it here.| Dir | Everything | Purpose |
|---|---|---|
dl | Downloads | Already-downloaded archives are reused, never re-fetched. |
src | Extracted | Extraction is skipped when the checked-out source is present. |
stage | Staged builds | Progress survives a failed build; re-running continues. |
Run a mirror yourself and point SOURCE_MIRROR at it. The layout mirrors dl/; the fetch layer treats it as a read-mostly source of truth.
rm -rf /var/cache/kama/src/* — free extracted source (re-extracts on next build).rm -rf /var/cache/kama/dl/* — dump downloads (re-fetches next time).rm -rf /var/cache/kama/stage/* — discard staged builds.