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

Add recipes

parent 42ea5e32
No related branches found
No related tags found
No related merge requests found
#TODO maybe incomplete script
#TODO missing dependencies - https://github.com/ccache/ccache/blob/master/doc/INSTALL.md#dependencies
# build instructions - https://github.com/ccache/ccache/blob/master/doc/INSTALL.md
[source]
tar = "https://github.com/ccache/ccache/releases/download/v4.10.2/ccache-4.10.2.tar.gz"
[build]
template = "custom"
dependencies = [
"libfmt",
"xxhash",
"zstd",
]
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
-D STATIC_LINK=ON
-D ENABLE_TESTING=OFF
-D REDIS_STORAGE_BACKEND=OFF
"${COOKBOOK_SOURCE}"
)
cookbook_configure
"""
#TODO not compiled or tested
# build instructions - https://github.com/jpd002/Play-#building-for-unix
[source]
git = "https://github.com/jpd002/Play-"
[build]
template = "custom"
dependencies = [
"openal",
"libevdev",
"freealut",
"qt5-base",
"qt5-x11extras",
"sqlite3",
]
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 meson
# build instructions - https://gitlab.gnome.org/World/AudioSharing#building-it-manually
[source]
git = "https://gitlab.gnome.org/World/AudioSharing"
[build]
template = "custom"
dependencies = [
"gtk4",
"glib",
"libadwaita",
"gstreamer",
]
#TODO incomplete script
#TODO missing dependencies - https://github.com/mixxxdj/mixxx/blob/main/tools/debian_buildenv.sh
# build instructions - https://github.com/mixxxdj/mixxx/wiki/Compiling%20on%20Linux
[source]
git = "https://github.com/mixxxdj/mixxx"
branch = "2.4"
[build]
template = "custom"
dependencies = [
"fftw",
"libflac",
"mesa",
"libhidapi",
"libmad",
"libopus",
"libopusfile",
"protobuf",
"qt6-base",
"qt6-svg",
"qt6-declarative",
"qt6-3d",
"librubberband",
"libsndfile",
"sqlite3",
"openssl1",
"portaudio",
]
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
"""
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