mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 23:44:17 +08:00
More recipe fixes and update TODOs
This commit is contained in:
parent
2265d71a46
commit
e08144b785
@ -1,6 +1,6 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/ellie/atuin"
|
||||
git = "https://github.com/atuinsh/atuin"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
#TODO figure out how to build this, see https://github.com/yaa110/cb#build-manually
|
||||
#TODO port to orbital
|
||||
#TODO discover how to cross-compile: https://github.com/yaa110/cb#build-manually
|
||||
[source]
|
||||
git = "https://github.com/yaa110/cb"
|
||||
[build]
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#TODO port to Orbital
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/xrelkd/clipcat"
|
||||
[build]
|
||||
|
||||
@ -1,8 +1,12 @@
|
||||
#TODO port to orbital
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/PThorpe92/CuTE"
|
||||
[build]
|
||||
template = "cargo"
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"openssl1",
|
||||
"openssl3",
|
||||
]
|
||||
script = """
|
||||
DYNAMIC_INIT
|
||||
cookbook_cargo
|
||||
"""
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#TODO missing script for building, see https://espanso.org/docs/install/linux/#wayland-compile
|
||||
#TODO port to orbital?
|
||||
#TODO not compiled or tested
|
||||
# build instructions: https://espanso.org/docs/install/linux/#x11-compile
|
||||
[source]
|
||||
git = "https://github.com/espanso/espanso"
|
||||
[build]
|
||||
@ -7,6 +7,22 @@ template = "custom"
|
||||
dependencies = [
|
||||
"libxkbcommon",
|
||||
"dbus",
|
||||
"wxwidgets3",
|
||||
"openssl1",
|
||||
"wxwidgets-gtk3",
|
||||
"openssl3",
|
||||
"libx11",
|
||||
"libxtst",
|
||||
]
|
||||
script = """
|
||||
DYNAMIC_INIT
|
||||
package=espanso
|
||||
"${COOKBOOK_CARGO}" build \
|
||||
--manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
|
||||
--package "${package}" \
|
||||
--release \
|
||||
--no-default-features \
|
||||
--features=vendored-tls,modulo
|
||||
mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
|
||||
cp -v \
|
||||
"target/${TARGET}/release/${package}" \
|
||||
"${COOKBOOK_STAGE}/usr/bin/${package}"
|
||||
"""
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
#TODO port to Orbital, see https://github.com/orhun/menyoki/blob/master/IMPLEMENTATION.md#implementing-for-other-platforms
|
||||
#TODO not compiled or tested
|
||||
# if the x11 backend don't work read this: https://github.com/orhun/menyoki/blob/master/IMPLEMENTATION.md#implementing-for-other-platforms
|
||||
[source]
|
||||
git = "https://github.com/orhun/menyoki"
|
||||
[build]
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
#TODO port to orbital
|
||||
#TODO not compiled or tested
|
||||
# customization: https://codeberg.org/AeriaVelocity/sued#configuration
|
||||
[source]
|
||||
git = "https://github.com/That1M8Head/sued"
|
||||
git = "https://codeberg.org/AeriaVelocity/sued"
|
||||
[build]
|
||||
template = "cargo"
|
||||
cargoflags = "--features=repl,startup,history"
|
||||
|
||||
@ -1,8 +1,12 @@
|
||||
#TODO port to orbital
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/sassman/t-rec-rs"
|
||||
[build]
|
||||
template = "cargo"
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"imagemagick",
|
||||
]
|
||||
script = """
|
||||
DYNAMIC_INIT
|
||||
cookbook_cargo
|
||||
"""
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#TODO port to Orbital
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/yykamei/thwack"
|
||||
[build]
|
||||
|
||||
@ -1,8 +1,18 @@
|
||||
#TODO port to Orbital
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://gitlab.com/getreu/tp-note"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
cookbook_cargo_packages tpnote
|
||||
package=tpnote
|
||||
"${COOKBOOK_CARGO}" build \
|
||||
--manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
|
||||
--package "${package}" \
|
||||
--release \
|
||||
--no-default-features \
|
||||
--features=lang-detection,renderer
|
||||
mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
|
||||
cp -v \
|
||||
"target/${TARGET}/release/${package}" \
|
||||
"${COOKBOOK_STAGE}/usr/bin/${package}"
|
||||
"""
|
||||
|
||||
@ -1,9 +1,13 @@
|
||||
#TODO port to Orbital
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/AmmarAbouZor/tui-journal"
|
||||
[build]
|
||||
template = "cargo"
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"openssl1",
|
||||
"openssl3",
|
||||
"sqlite3",
|
||||
]
|
||||
script = """
|
||||
DYNAMIC_INIT
|
||||
cookbook_cargo
|
||||
"""
|
||||
@ -1,5 +1,5 @@
|
||||
#TODO port to orbital
|
||||
#TODO build instructions - https://github.com/H-M-H/Weylus#building
|
||||
#TODO not compiled or tested
|
||||
# build instructions: https://github.com/H-M-H/Weylus#building
|
||||
[source]
|
||||
git = "https://github.com/H-M-H/Weylus"
|
||||
[build]
|
||||
@ -8,7 +8,21 @@ dependencies = [
|
||||
"pango",
|
||||
"gstreamer",
|
||||
"dbus",
|
||||
"libx11",
|
||||
"libxext",
|
||||
"libxft",
|
||||
"libxinerama",
|
||||
"libxcursor",
|
||||
"libxfixes",
|
||||
"libxtst",
|
||||
"libxrandr",
|
||||
"libxcomposite",
|
||||
"libxv",
|
||||
"libxi",
|
||||
"libxrender",
|
||||
"libdrm",
|
||||
]
|
||||
script = """
|
||||
DYNAMIC_INIT
|
||||
cookbook_cargo_packages weylus
|
||||
"""
|
||||
|
||||
Loading…
Reference in New Issue
Block a user