Add recipes

This commit is contained in:
Ribbon 2025-03-29 22:35:59 +00:00
parent e3fec0dffd
commit 7aefde3e75
4 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#TODO missing script for gnu make
# build instructions - https://github.com/enzo1982/boca/#installation
[source]
tar = "https://github.com/enzo1982/BoCA/releases/download/v1.0.7/boca-1.0.7.tar.gz"
[build]
template = "custom"
dependencies = [
"libsmooth",
"pulseaudio",
"libcdio",
"libcdio-paranoia",
"expat",
"liburiparser",
]

View File

@ -0,0 +1,14 @@
#TODO missing script for gnu make
# build instructions - https://github.com/enzo1982/smooth/#installation
[source]
tar = "https://github.com/enzo1982/smooth/releases/download/v0.9.10/smooth-0.9.10.tar.gz"
[build]
template = "custom"
dependencies = [
"bzip2",
"curl",
"fribidi",
"gtk3",
"libjpeg",
"libxml2",
]

View File

@ -0,0 +1,20 @@
#TODO not compiled or tested
[source]
tar = "https://github.com/uriparser/uriparser/releases/download/uriparser-0.9.8/uriparser-0.9.8.tar.bz2"
[build]
template = "custom"
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
"""

View File

@ -0,0 +1,10 @@
#TODO missing script for gnu make
# build instructions - https://github.com/enzo1982/freac#compiling
[source]
tar = "https://github.com/enzo1982/freac/releases/download/v1.1.7/freac-1.1.7.tar.gz"
[build]
template = "custom"
dependencies = [
"boca",
"libsmooth",
]