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
696 B
TOML
21 lines
696 B
TOML
[package]
|
|
name = "binutils"
|
|
version = "2.46"
|
|
description = "GNU binary utilities"
|
|
url = "https://www.gnu.org/software/binutils/"
|
|
license = "GPL-3.0"
|
|
|
|
[source]
|
|
url = "https://ftp.gnu.org/gnu/binutils/binutils-${version}.tar.xz"
|
|
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
|
|
|
[dependencies]
|
|
run = ["glibc", "zlib"]
|
|
build = ["make", "texinfo"]
|
|
|
|
[build]
|
|
system = "autotools"
|
|
configure = """mkdir build && cd build && ../configure --prefix=/usr --enable-gold --enable-ld=default --enable-plugins --enable-shared --disable-werror --with-system-zlib --enable-default-hash-style=gnu"""
|
|
make = """make tooldir=/usr"""
|
|
install = """make DESTDIR=${PKG} tooldir=/usr install"""
|