mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 11:00:29 +00:00
15 lines
469 B
Bash
15 lines
469 B
Bash
|
#!/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_path="build-aux/config.sub"
|
||
|
configopts=("--disable-lto" "--disable-jit")
|
||
|
pre_configure() {
|
||
|
run autoreconf
|
||
|
}
|