diff --git a/recipes/tools/helix/recipe.toml b/recipes/tools/helix/recipe.toml new file mode 100644 index 0000000000000000000000000000000000000000..09b594881664db9c1db6e04e7caf40d6505f9317 --- /dev/null +++ b/recipes/tools/helix/recipe.toml @@ -0,0 +1,16 @@ +#TODO signal handling is disabled, it should be re-enabled when Redox is ready +#TODO language files are not built, only the "hx" editor is built +#TODO Consider adding `export RUSTFLAGS+="-C target-feature=-crt-static"` when adding language support +#TODO configuration - https://docs.helix-editor.com/install.html#configuring-helixs-runtime-files +[source] +git = "https://gitlab.redox-os.org/redox-os/helix.git" +branch = "redox" + +[build] +template = "custom" +script = """ +export HELIX_DISABLE_AUTO_GRAMMAR_BUILD=1 +COOKBOOK_SOURCE+="/helix-term" +cookbook_cargo +""" + diff --git a/recipes/wip/helix/recipe.toml b/recipes/wip/helix/recipe.toml deleted file mode 100644 index 27490396f877ee3e01b0de4f654df97d30c293cd..0000000000000000000000000000000000000000 --- a/recipes/wip/helix/recipe.toml +++ /dev/null @@ -1,9 +0,0 @@ -#TODO program source code error -#TODO configuration - https://docs.helix-editor.com/install.html#configuring-helixs-runtime-files -[source] -tar = "https://github.com/helix-editor/helix/releases/download/23.10/helix-23.10-source.tar.xz" -[build] -template = "custom" -script = """ -cookbook_cargo_packages helix-term -""" diff --git a/src/bin/cook.rs b/src/bin/cook.rs index b2bf5c86cc63d82339ba82f9909a10c085d7c86a..5767d7cac84c35a7393b4fa91944baa82fe2b12a 100644 --- a/src/bin/cook.rs +++ b/src/bin/cook.rs @@ -453,9 +453,12 @@ export PKG_CONFIG_SYSROOT_DIR="${COOKBOOK_SYSROOT}" # to not strip symbols from the final package, add COOKBOOK_NOSTRIP=true to the recipe # (or to your environment) before calling cookbook_cargo or cookbook_cargo_packages build_type=release +install_flags= +build_flags=--release if [ ! -z "${COOKBOOK_DEBUG}" ] then install_flags=--debug + build_flags= build_type=debug fi @@ -479,7 +482,7 @@ function cookbook_cargo_examples { "${COOKBOOK_CARGO}" build \ --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \ --example "${example}" \ - --${build_type} + ${build_flags} mkdir -pv "${COOKBOOK_STAGE}/usr/bin" cp -v \ "target/${TARGET}/${build_type}/examples/${example}" \ @@ -495,7 +498,7 @@ function cookbook_cargo_packages { "${COOKBOOK_CARGO}" build \ --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \ --package "${package}" \ - --${build_type} + ${build_flags} mkdir -pv "${COOKBOOK_STAGE}/usr/bin" cp -v \ "target/${TARGET}/${build_type}/${package}" \