59d4ba5dcf
CUB (Red Bear OS Package Builder) is a Rust CLI tool that combines package management and building:
- RBPKGBUILD parser (TOML format) with full spec support
- Cookbook adapter converting RBPKGBUILD to recipe.toml
- PKGBUILD (Arch AUR) to RBPKGBUILD conversion with Linuxism detection
- Dependency mapping (Arch to Redox names)
- pkgar package creation integration
- Build environment setup with Cookbook env vars
- CLI with pacman-style shortcuts: -S, -Ss, -B, -G, -Pi, -Sua, -Sc, --import-aur
28 cub-lib tests passing. cub-cli compiles with local pkgutils.
Added cub = {} to redbear-desktop, redbear-full, redbear-minimal configs.
Created recipe symlink and updated integrate-redbear.sh.
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
27 lines
421 B
TOML
27 lines
421 B
TOML
# Red Bear OS Minimal Configuration
|
|
# Console/Server variant with bare-metal driver support but no GUI
|
|
#
|
|
# Build: make all CONFIG_NAME=redbear-minimal
|
|
|
|
include = ["minimal.toml"]
|
|
|
|
[general]
|
|
filesystem_size = 512
|
|
|
|
[packages]
|
|
# Red Bear OS branding
|
|
redbear-release = {}
|
|
|
|
# Terminal file manager
|
|
mc = {}
|
|
|
|
# Package builder
|
|
cub = {}
|
|
|
|
# Firmware loading
|
|
firmware-loader = {}
|
|
|
|
# Input event handling
|
|
evdevd = {}
|
|
udev-shim = {}
|