Update recipes

This commit is contained in:
Ribbon 2024-07-20 01:20:22 +00:00
parent e028bbf3b8
commit 0fd17730b4
2 changed files with 10 additions and 4 deletions

View File

@ -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
"""

View File

@ -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"
"""