Etapa G: sqlite/ncurses/readline (libs C foundational static) — destraban apps downstream

This commit is contained in:
2026-06-30 06:10:56 -04:00
parent 60c813cf06
commit f109946eef
3 changed files with 21 additions and 69 deletions
+8 -10
View File
@@ -1,18 +1,16 @@
# readline 8.3 — edición de línea (C). Lib base: shells/REPL. De-Alpinizada: compiler=gcc,
# configure-split, estático, contra ncurses del corpus.
# readline 8.2 — edición de línea (base de REPLs/shells). autotools static, dep ncurses.
name = "readline"
version = "8.3"
version = "8.2"
[source]
tarball = "https://ftp.gnu.org/gnu/readline/readline-8.3.tar.gz"
sha256 = "fe5383204467828cd495ee8d1d3c037a7eba1389c22bc6a041f627976f9061cc"
tarball = "https://ftp.gnu.org/gnu/readline/readline-8.2.tar.gz"
sha256 = "3feb7171f16a84ee82ca18a36d7b9be109a52c04f492a053331d7d1095007c35"
[build]
compiler = "gcc"
compiler = "zig-cc"
target = "x86_64-linux-musl"
link = "static"
flags = []
[build.phases]
configure = './configure --build=$CBUILD --host=$CHOST --prefix=/usr --disable-shared --enable-static --with-curses'
compile = 'make'
install = 'make DESTDIR=/out install'
configure = "./configure --prefix=/usr --disable-shared --enable-static --with-curses"
compile = "make"
install = "make install DESTDIR=/out"
[deps]
build = ["ncurses"]