This commit is contained in:
Jeremy Soller 2025-11-09 18:47:19 -07:00
commit 32c52ca97e
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA

View File

@ -6,8 +6,12 @@ template = "custom"
dependencies = [
"libgmp",
"libmpfr",
"ncurses",
"readline"
]
script = """
DYNAMIC_INIT
COOKBOOK_CONFIGURE_FLAGS+=(
--disable-binutils
--disable-ld
@ -17,6 +21,12 @@ COOKBOOK_CONFIGURE_FLAGS+=(
--disable-gprof
--disable-gprofng
--disable-intl
--with-system-readline
--with-gmp="${COOKBOOK_SYSROOT}"
--with-mpfr="${COOKBOOK_SYSROOT}"
--with-curses
)
"${COOKBOOK_CONFIGURE}" "${COOKBOOK_CONFIGURE_FLAGS[@]}"
cookbook_configure
"""