mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-02 09:38:42 +08:00
23 lines
399 B
TOML
23 lines
399 B
TOML
#TODO compilation error
|
|
#TODO make dependencies work
|
|
[source]
|
|
tar = "https://ftp.gnu.org/gnu/emacs/emacs-29.1.tar.xz"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"dbus",
|
|
"libgmp",
|
|
"libgpm",
|
|
"gnutls3",
|
|
"jansson",
|
|
"liblcms",
|
|
"sqlite3",
|
|
"libxml2",
|
|
"zlib",
|
|
"ncurses",
|
|
]
|
|
script = """
|
|
export CPPFLAGS="-I${COOKBOOK_SYSROOT}/include/ncurses"
|
|
cookbook_configure
|
|
"""
|