mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
25 lines
842 B
Bash
Executable file
25 lines
842 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=gnucobol
|
|
version=3.1.2
|
|
useconfigure="true"
|
|
use_fresh_config_sub="true"
|
|
config_sub_paths=("build_aux/config.sub")
|
|
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=(
|
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
|
"--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"
|
|
)
|