diff --git a/recipes/wip/text/kibi/recipe.toml b/recipes/wip/text/kibi/recipe.toml index 5e90d535297af4c3ddeb3f8f1ed96cf0987dc4ed..828a42703ba001c6437b4e352bebd5159b4a7386 100644 --- a/recipes/wip/text/kibi/recipe.toml +++ b/recipes/wip/text/kibi/recipe.toml @@ -1,5 +1,10 @@ -#TODO move to proper category +#TODO promote [source] git = "https://github.com/ilai-deutel/kibi" [build] -template = "cargo" +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/kibi +cp -rv "${COOKBOOK_SOURCE}"/syntax.d "${COOKBOOK_STAGE}"/usr/share/kibi +cookbook_cargo +""" diff --git a/recipes/wip/text/zed/recipe.toml b/recipes/wip/text/zed/recipe.toml index eb2f2340dc861d1263290c3ba9f4d6007dc4b4c6..673b6f4f5a7b94191d7c41c16d275bb5c40d3744 100644 --- a/recipes/wip/text/zed/recipe.toml +++ b/recipes/wip/text/zed/recipe.toml @@ -1,5 +1,6 @@ #TODO not compiled or tested #TODO maybe missing dependencies, see https://github.com/zed-industries/zed/blob/main/script/linux#L15 +#TODO build the gui ("zed" package) once we have gpu drivers to render vulkan at decent fps # build instructions - https://zed.dev/docs/development/linux [source] git = "https://github.com/zed-industries/zed" @@ -14,7 +15,7 @@ dependencies = [ "sqlite3", ] script = """ -cookbook_cargo_packages cli zed +cookbook_cargo_packages cli mv "${COOKBOOK_STAGE}/usr/bin/cli" "${COOKBOOK_STAGE}/usr/bin/zed-cli" -mv "${COOKBOOK_STAGE}/usr/bin/zed" "${COOKBOOK_STAGE}/usr/bin/zed-editor" +#mv "${COOKBOOK_STAGE}/usr/bin/zed" "${COOKBOOK_STAGE}/usr/bin/zed-editor" """