Initial scaffold

This commit is contained in:
Astral
2026-09-01 08:00:05 +02:00
commit 534e1a6965
4 changed files with 129 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env sh
# busybox — easy-tier recipe example
# Kama auto-fetches + auto-extracts; we just build and stage-install.
name=busybox
version=1.36.1
url=https://busybox.net/downloads/busybox-1.36.1.tar.bz2
deps=() # no build-time deps for a static busybox
build() {
make defconfig
make -j"$JOBS"
}
install() {
make install CONFIG_PREFIX="$pkgdir"
}