mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-02 09:38:42 +08:00
15 lines
229 B
TOML
15 lines
229 B
TOML
#TODO make apr work
|
|
[source]
|
|
tar = "https://dlcdn.apache.org//apr/apr-util-1.6.3.tar.bz2"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"apr",
|
|
]
|
|
script = """
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
--with-apr
|
|
)
|
|
cookbook_configure
|
|
"""
|