mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
Add and update more recipes
This commit is contained in:
parent
c672547cdc
commit
0c39c897ba
@ -1,9 +1,12 @@
|
|||||||
#TODO not compiled or tested
|
#TODO not compiled or tested
|
||||||
# build instructions: https://gdal.org/development/building_from_source.html
|
# build instructions: https://gdal.org/development/building_from_source.html
|
||||||
[source]
|
[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]
|
[build]
|
||||||
template = "cmake"
|
template = "cmake"
|
||||||
cmakeflags = [
|
cmakeflags = [
|
||||||
"-DBUILD_TESTING=OFF"
|
"-DBUILD_TESTING=OFF"
|
||||||
]
|
]
|
||||||
|
dependencies = [
|
||||||
|
"proj"
|
||||||
|
]
|
||||||
5
recipes/wip/libs/other/slang/recipe.toml
Normal file
5
recipes/wip/libs/other/slang/recipe.toml
Normal 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"
|
||||||
8
recipes/wip/libs/sci/proj-data/recipe.toml
Normal file
8
recipes/wip/libs/sci/proj-data/recipe.toml
Normal 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"
|
||||||
|
"""
|
||||||
19
recipes/wip/libs/sci/proj/recipe.toml
Normal file
19
recipes/wip/libs/sci/proj/recipe.toml
Normal 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",
|
||||||
|
]
|
||||||
8
recipes/wip/news/slrn/recipe.toml
Normal file
8
recipes/wip/news/slrn/recipe.toml
Normal 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",
|
||||||
|
]
|
||||||
11
recipes/wip/science/axe/recipe.toml
Normal file
11
recipes/wip/science/axe/recipe.toml
Normal 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",
|
||||||
|
]
|
||||||
Loading…
Reference in New Issue
Block a user