summaryrefslogtreecommitdiff
path: root/Ports/gnucobol/package.sh
diff options
context:
space:
mode:
authorBrendan Coles <bcoles@gmail.com>2021-11-01 08:20:40 +0000
committerAndreas Kling <kling@serenityos.org>2021-11-01 10:44:57 +0100
commitaea2583cdece852b075e952a515a5b538ddbb7a1 (patch)
treeb840ff24bcd95d760ad4988c918a3a091c597df3 /Ports/gnucobol/package.sh
parentbe9a7057ff812a6e447a6c7b772d84141dcdc2b2 (diff)
downloadserenity-aea2583cdece852b075e952a515a5b538ddbb7a1.zip
Ports: gnucobol: Build with ncurses and without NLS
Diffstat (limited to 'Ports/gnucobol/package.sh')
-rwxr-xr-xPorts/gnucobol/package.sh15
1 files changed, 13 insertions, 2 deletions
diff --git a/Ports/gnucobol/package.sh b/Ports/gnucobol/package.sh
index a9c77df7ba..4aa62003f4 100755
--- a/Ports/gnucobol/package.sh
+++ b/Ports/gnucobol/package.sh
@@ -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"
+)