1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:47:34 +00:00

Ports: Port GNU guile

This commit is contained in:
Peter Elliott 2022-05-18 00:29:25 -06:00 committed by Andreas Kling
parent f6943c85b0
commit f19aad8336
5 changed files with 175 additions and 0 deletions

14
Ports/guile/package.sh Executable file
View file

@ -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
}