Add recipes

This commit is contained in:
Ribbon 2025-06-06 09:58:52 -03:00
parent 7ad3f7b2f6
commit a217a03791
7 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,5 @@
#TODO not compiled or tested
[source]
git = "https://github.com/Jitpomi/ferrisup"
[build]
template = "cargo"

View File

@ -0,0 +1,16 @@
#TODO not compiled or tested
#TODO maybe incomplete configuration
# build instructions - https://github.com/johang/btfs#building-from-git-on-a-recent-debianubuntu
[source]
git = "https://github.com/johang/btfs"
rev = "2b372f4596df3ff97e3b39d58b144a7cbfff012a"
script = """
autoreconf -i
"""
[build]
template = "configure"
dependencies = [
"libfuse3",
"libtorrent",
"curl",
]

View File

@ -0,0 +1,5 @@
#TODO missing script for bbv2, see - https://libtorrent.org/building.html
[source]
tar = "https://github.com/arvidn/libtorrent/releases/download/v2.0.11/libtorrent-rasterbar-2.0.11.tar.gz"
[build]
template = "custom"

View File

@ -0,0 +1,8 @@
#TODO not compiled or tested
[source]
git = "https://github.com/NLnetLabs/dnst"
[build]
template = "custom"
script = """
cookbook_cargo --features ring
"""

View File

@ -0,0 +1,8 @@
#TODO not compiled or tested
[source]
git = "https://github.com/nik-rev/ttv"
[build]
template = "cargo"
dependencies = [
"ffmpeg6",
]

View File

@ -0,0 +1,5 @@
#TODO not compiled or tested
[source]
git = "https://github.com/ReagentX/Logria"
[build]
template = "cargo"

View File

@ -0,0 +1,10 @@
#TODO not compiled or tested
[source]
git = "https://github.com/Ultrasquid9/TeaCat"
[build]
template = "custom"
script = """
mkdir -pv "${COOKBOOK_STAGE}"/usr/share/teacat
cp -rv "${COOKBOOK_SOURCE}"/test.tcat "${COOKBOOK_STAGE}"/usr/share/teacat
cookbook_cargo
"""