Ports: gnucobol: Build with ncurses and without NLS
This commit is contained in:
parent
be9a7057ff
commit
aea2583cde
Notes:
sideshowbarker
2024-07-18 01:39:23 +09:00
Author: https://github.com/bcoles Commit: https://github.com/SerenityOS/serenity/commit/aea2583cdec Pull-request: https://github.com/SerenityOS/serenity/pull/10739
1 changed files with 13 additions and 2 deletions
|
@ -2,10 +2,21 @@
|
|||
port=gnucobol
|
||||
version=3.1.2
|
||||
useconfigure="true"
|
||||
depends=("gmp" "gcc" "bash")
|
||||
depends=("gmp" "gcc" "bash" "ncurses")
|
||||
files="https://ftpmirror.gnu.org/gnu/gnucobol/gnucobol-${version}.tar.bz2 gnucobol-${version}.tar.bz2
|
||||
https://ftpmirror.gnu.org/gnu/gnucobol/gnucobol-${version}.tar.bz2.sig gnucobol-${version}.tar.bz2.sig
|
||||
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"
|
||||
auth_type="sig"
|
||||
auth_opts=("--keyring" "./gnu-keyring.gpg" "gnucobol-${version}.tar.bz2.sig")
|
||||
configopts=("--prefix=/usr/local" "--enable-hardening" "--disable-rpath" "--with-gnu-ld" "--with-dl" "--with-math=gmp" "--with-db=no" "--with-json=no" "--with-curses=curses")
|
||||
configopts=(
|
||||
"--prefix=/usr/local"
|
||||
"--enable-hardening"
|
||||
"--disable-rpath"
|
||||
"--disable-nls"
|
||||
"--with-gnu-ld"
|
||||
"--with-dl"
|
||||
"--with-math=gmp"
|
||||
"--with-curses=ncurses"
|
||||
"--with-db=no"
|
||||
"--with-json=no"
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue