Package definitions for the complete DarkForge Linux system: - core/ (67): base system, toolchain, kernel, utilities, dev tools - extra/ (26): libraries, frameworks, drivers (nvidia-open, pipewire, mesa) - desktop/ (19): Wayland stack, dwl compositor, terminals, applications - gaming/ (12): Steam, Wine, Proton, gamemode, mangohud, PrismLauncher Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
548 B
TOML
21 lines
548 B
TOML
[package]
|
|
name = "ninja"
|
|
version = "1.13.0"
|
|
description = "Small build system with a focus on speed"
|
|
url = "https://ninja-build.org/"
|
|
license = "Apache-2.0"
|
|
|
|
[source]
|
|
url = "https://github.com/ninja-build/ninja/archive/v${version}/ninja-${version}.tar.gz"
|
|
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
|
|
|
[dependencies]
|
|
run = ["glibc"]
|
|
build = ["gcc", "make", "python"]
|
|
|
|
[build]
|
|
system = "custom"
|
|
configure = """"""
|
|
make = """python3 configure.py --bootstrap"""
|
|
install = """install -Dm755 ninja ${PKG}/usr/bin/ninja"""
|