diff options
author | Peter Elliott <pelliott@ualberta.ca> | 2022-05-18 00:29:25 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-05-23 00:13:26 +0200 |
commit | f19aad8336cf3c53a2f805be121f49fcf3a3877f (patch) | |
tree | cdf4eda7123daae0a2bbc9447f4e9e7599f0f2dd /Ports/guile/package.sh | |
parent | f6943c85b05603167c8799879bd1e557dea3fab8 (diff) | |
download | serenity-f19aad8336cf3c53a2f805be121f49fcf3a3877f.zip |
Ports: Port GNU guile
Diffstat (limited to 'Ports/guile/package.sh')
-rwxr-xr-x | Ports/guile/package.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Ports/guile/package.sh b/Ports/guile/package.sh new file mode 100755 index 0000000000..2b57e3145c --- /dev/null +++ b/Ports/guile/package.sh @@ -0,0 +1,14 @@ +#!/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 +} |