Files
depot/contrib/user.depot.toml.example
T
SFG545 9a00608104 feat: Implement build state tracking and interactive package specification creation
- Added StateTracker to manage build steps and allow resuming interrupted builds.
- Updated post_extract function to utilize StateTracker for patch and command execution.
- Introduced makefile.rs to handle building and installing packages via Makefile.
- Created interactive.rs for an interactive package specification creator with SHA256 computation for source URLs.
- Enhanced checksum verification to support multiple algorithms (SHA256, SHA512, MD5).
- Added example configuration files in contrib for system-wide and user-level Depot configurations.
- Updated tests to cover new functionality and ensure correctness of state tracking and interactive creation.
2026-02-16 21:38:05 -06:00

11 lines
166 B
TOML

# Example per-user configuration (~/.config/depot.toml)
[build]
prefix = "/usr/local"
cc = "clang"
[build.flags]
cflags = ["-O2"]
cflags += ["-g"]
carch = "x86_64"