mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
f81e47eea8
Some ports may have more than one `config.sub` that is in use (vendored dependencies, etc.). Instead of fiddling about with space-delimited strings, let's just make that setting into an array right away.
14 lines
472 B
Bash
Executable file
14 lines
472 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=guile
|
|
version=3.0.8
|
|
files="https://ftpmirror.gnu.org/gnu/guile/guile-${version}.tar.gz guile-${version}.tar.gz f25ae0c26e911af1b5005292d4f56621879f74d6958b30741cf67d8b6feb2016"
|
|
depends=("gmp" "libunistring" "libffi" "bdwgc" "libiconv")
|
|
auth_type=sha256
|
|
|
|
useconfigure=true
|
|
use_fresh_config_sub=true
|
|
config_sub_paths=("build-aux/config.sub")
|
|
configopts=("--disable-lto" "--disable-jit")
|
|
pre_configure() {
|
|
run autoreconf
|
|
}
|