diff --git a/recipes/wip/kde/kalzium/recipe.toml b/recipes/wip/kde/kalzium/recipe.toml index 23f379a9..97499a6b 100644 --- a/recipes/wip/kde/kalzium/recipe.toml +++ b/recipes/wip/kde/kalzium/recipe.toml @@ -9,5 +9,5 @@ template = "cmake" #dependencies = [ #"libeigen", #"openbabel", - #"avogadro", + #"avogadro-libs", #] diff --git a/recipes/wip/libs/gnome/gexiv2/recipe.toml b/recipes/wip/libs/gnome/gexiv2/recipe.toml index e503c81c..f62f8489 100644 --- a/recipes/wip/libs/gnome/gexiv2/recipe.toml +++ b/recipes/wip/libs/gnome/gexiv2/recipe.toml @@ -6,4 +6,7 @@ tar = "https://download.gnome.org/sources/gexiv2/0.14/gexiv2-0.14.2.tar.xz" template = "meson" mesonflags = [ "-Dintrospection=false" -] \ No newline at end of file +] +dependencies = [ + "exiv2" +] diff --git a/recipes/wip/libs/media/exiv2/recipe.toml b/recipes/wip/libs/media/exiv2/recipe.toml new file mode 100644 index 00000000..b60246de --- /dev/null +++ b/recipes/wip/libs/media/exiv2/recipe.toml @@ -0,0 +1,16 @@ +#TODO compile and test +[source] +git = "https://github.com/Exiv2/exiv2" +rev = "v0.28.8" +shallow_clone = true +[build] +template = "cmake" +cmakeflags = [ + "-DEXIV2_ENABLE_XMP=OFF", + "-DEXIV2_ENABLE_BROTLI=OFF", + "-DBUILD_WITH_CCACHE=ON", +] +dependencies = [ + "zlib", + "libiconv", +] diff --git a/recipes/wip/libs/sci/avogadro-libs/recipe.toml b/recipes/wip/libs/sci/avogadro-libs/recipe.toml new file mode 100644 index 00000000..671ebf09 --- /dev/null +++ b/recipes/wip/libs/sci/avogadro-libs/recipe.toml @@ -0,0 +1,16 @@ +#TODO determine minimum dependencies from cmake log +# build instructions: https://avogadro.cc/develop/build.html#develop-build +[source] +git = "https://github.com/OpenChemistry/avogadrolibs" +rev = "2.0.0" +shallow_clone = true +[build] +template = "cmake" +#dependencies = [ + #"openbabel", + #"mesa-glu", + #"libxml2", + #"xz", + #"readline", + #"rapidjson", +#] diff --git a/recipes/wip/libs/sci/geos/recipe.toml b/recipes/wip/libs/sci/geos/recipe.toml new file mode 100644 index 00000000..7c685e1f --- /dev/null +++ b/recipes/wip/libs/sci/geos/recipe.toml @@ -0,0 +1,11 @@ +#TODO compile and test +# build instructions: https://libgeos.org/usage/download/ +[source] +tar = "https://download.osgeo.org/geos/geos-3.14.1.tar.bz2" +[build] +template = "cmake" +cmakeflags = [ + "-DBUILD_DOCUMENTATION=OFF", + "-DBUILD_TESTING=OFF", + "-DUSE_CCACHE=ON", +] diff --git a/recipes/wip/libs/sci/libspatialite/recipe.toml b/recipes/wip/libs/sci/libspatialite/recipe.toml new file mode 100644 index 00000000..9e81a0a8 --- /dev/null +++ b/recipes/wip/libs/sci/libspatialite/recipe.toml @@ -0,0 +1,14 @@ +#TODO compile and test +# build instructions: https://www.gaia-gis.it/fossil/libspatialite/file?name=README&ci=tip +[source] +tar = "https://www.gaia-gis.it/gaia-sins/libspatialite-sources/libspatialite-5.1.0.tar.gz" +[build] +template = "configure" +configureflags = [ + "--enable-freexl=no" +] +dependencies = [ + "sqlite3", + "proj", + "geos", +]