mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-28 23:58:42 +08:00
38 lines
626 B
TOML
38 lines
626 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",
|
|
"cairo",
|
|
"fontconfig",
|
|
"freetype2",
|
|
"gdk-pixbuf",
|
|
"libgif",
|
|
"glib",
|
|
"gtk3",
|
|
"harfbuzz",
|
|
"libjpeg-turbo",
|
|
"pango",
|
|
"libpng",
|
|
"librsvg",
|
|
"libtiff",
|
|
"libwebp",
|
|
"libotf",
|
|
]
|
|
script = """
|
|
export CPPFLAGS="-I${COOKBOOK_SYSROOT}/include/ncurses"
|
|
cookbook_configure
|
|
"""
|