Add and update more recipes

This commit is contained in:
Ribbon 2026-06-07 19:29:51 -03:00
parent c672547cdc
commit 0c39c897ba
6 changed files with 55 additions and 1 deletions

View File

@ -1,9 +1,12 @@
#TODO not compiled or tested
# build instructions: https://gdal.org/development/building_from_source.html
[source]
tar = "https://github.com/OSGeo/gdal/releases/download/v3.12.3/gdal-3.12.3.tar.xz"
tar = "https://github.com/OSGeo/gdal/releases/download/v3.13.1/gdal-3.13.1.tar.xz"
[build]
template = "cmake"
cmakeflags = [
"-DBUILD_TESTING=OFF"
]
dependencies = [
"proj"
]

View File

@ -0,0 +1,5 @@
#TODO compile and test
[source]
tar = "https://www.jedsoft.org/releases/slang/slang-2.3.3.tar.bz2"
[build]
template = "configure"

View File

@ -0,0 +1,8 @@
[source]
tar = "https://download.osgeo.org/proj/proj-data-1.24.tar.gz"
[build]
template = "custom"
script = """
mkdir -pv "${COOKBOOK_STAGE}/home/user/.local/share/proj"
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/home/user/.local/share/proj"
"""

View File

@ -0,0 +1,19 @@
#TODO compile and test
# build instructions: https://proj.org/en/stable/install.html#compilation-and-installation-from-source-code
[source]
tar = "https://download.osgeo.org/proj/proj-9.8.1.tar.gz"
[build]
template = "cmake"
cmakeflags = [
"-DBUILD_TESTING=OFF",
]
dependencies = [
"sqlite3",
"nlohmann-json",
#"libtiff",
#"curl",
]
[package]
dependencies = [
"proj-data",
]

View File

@ -0,0 +1,8 @@
#TODO compile and test
[source]
tar = "https://jedsoft.org/releases/slrn/slrn-1.0.3a.tar.bz2"
[build]
template = "configure"
dependencies = [
"slang",
]

View File

@ -0,0 +1,11 @@
#TODO compile and test
# maybe need to disable or patch bundled dependencies
[source]
git = "https://github.com/kdm9/axe"
rev = "c8a636fd11d394034776bda45a5f0ef9b6e80046"
shallow_clone = true
[build]
template = "cmake"
dependencies = [
"zlib",
]