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
589 B
TOML
21 lines
589 B
TOML
[package]
|
|
name = "readline"
|
|
version = "8.3"
|
|
description = "GNU readline library"
|
|
url = "https://tiswww.case.edu/php/chet/readline/rltop.html"
|
|
license = "GPL-3.0"
|
|
|
|
[source]
|
|
url = "https://ftp.gnu.org/gnu/readline/readline-${version}.tar.gz"
|
|
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
|
|
|
[dependencies]
|
|
run = ["ncurses"]
|
|
build = ["gcc", "make"]
|
|
|
|
[build]
|
|
system = "autotools"
|
|
configure = """./configure --prefix=/usr --disable-static --with-curses"""
|
|
make = """make SHLIB_LIBS='-lncursesw'"""
|
|
install = """make SHLIB_LIBS='-lncursesw' DESTDIR=${PKG} install"""
|