Skip to content
Snippets Groups Projects
Commit ac3db0c4 authored by Ribbon's avatar Ribbon :speech_balloon:
Browse files

Add recipes

parent 9a93aab9
No related branches found
No related tags found
No related merge requests found
#TODO not compiled or tested
# build instructions - https://github.com/Lime3DS/Lime3DS/wiki/Building-From-Source#linux
[source]
git = "https://github.com/Lime3DS/Lime3DS"
[build]
template = "custom"
dependencies = [
"sdl2",
"qt6-base",
"qt6-multimedia",
"portaudio",
"libx11",
"libxext",
"pipewire",
]
script = """
COOKBOOK_CONFIGURE="cmake"
COOKBOOK_CONFIGURE_FLAGS=(
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_CROSSCOMPILING=True
-DCMAKE_EXE_LINKER_FLAGS="-static"
-DCMAKE_INSTALL_PREFIX="/"
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
-DCMAKE_SYSTEM_NAME=Generic
-DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)"
-DCMAKE_VERBOSE_MAKEFILE=On
"${COOKBOOK_SOURCE}"
)
cookbook_configure
"""
#TODO missing script for qmake and gnu make
# build instructions - https://dev.pencil2d.org/build_linux.html
[source]
git = "https://github.com/pencil2d/pencil"
branch = "release/0.7.0"
[build]
template = "custom"
dependencies = [
"qt6-base",
"qt6-multimedia",
"qt6-svg",
]
#TODO satisfy the dependencies and complete the script
# build instructions - https://github.com/krupkat/xpano#development
# linux script - https://github.com/krupkat/xpano/blob/main/misc/build/build-ubuntu-22.sh
[source]
git = "https://github.com/krupkat/xpano"
rev = "5e626f66d2670a7f3fd04e805610ef98a506e401"
[build]
template = "custom"
dependencies = [
"gtk3",
"opencv4",
"sdl2",
"libspdlog",
]
script = """
COOKBOOK_CONFIGURE="cmake"
COOKBOOK_CONFIGURE_FLAGS=(
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_CROSSCOMPILING=True
-DCMAKE_EXE_LINKER_FLAGS="-static"
-DCMAKE_INSTALL_PREFIX="/"
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
-DCMAKE_SYSTEM_NAME=Generic
-DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)"
-DCMAKE_VERBOSE_MAKEFILE=On
"${COOKBOOK_SOURCE}"
)
cookbook_configure
"""
#TODO missing script for npm
# build instructions - https://docs.zen-browser.app/building
#TODO analyze the dependencies
[source]
git = "https://github.com/zen-browser/desktop"
branch = "stable"
[build]
template = "custom"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment