21 lines
677 B
TOML
21 lines
677 B
TOML
[package]
|
|
name = "lib32-ncurses"
|
|
version = "6.5"
|
|
description = "32-bit terminal control library"
|
|
url = "https://invisible-island.net/ncurses/"
|
|
license = "MIT"
|
|
|
|
[source]
|
|
url = "https://ftp.gnu.org/gnu/ncurses/ncurses-${version}.tar.gz"
|
|
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
|
|
|
[dependencies]
|
|
run = ["lib32-glibc"]
|
|
build = ["gcc", "make"]
|
|
|
|
[build]
|
|
system = "autotools"
|
|
configure = """CC="gcc -m32" CXX="g++ -m32" ./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --with-shared --without-normal --with-cxx-shared --without-debug --without-ada --enable-widec"""
|
|
make = """make"""
|
|
install = """make DESTDIR=${PKG} install"""
|