This directory is a Rust-based package collection for SeeleOS.
It is closer to a small ports collection than a full package manager.
Build and install a package into the disk image sysroot:
cargo run install bash
cargo run install busybox
cargo run install tinyccClean a package work directory:
cargo run clean bashThe CLI currently supports:
install <package>clean <package>
- Add a package asset directory under
packages/<name>/if patches or extra files are needed. - Add a new recipe under
src/package/. - Implement
Packagefor it. - Register it in
src/main.rs.