diff --git a/recipes/wip/dev/kicad/recipe.toml b/recipes/wip/dev/kicad/recipe.toml new file mode 100644 index 0000000000000000000000000000000000000000..e06a2bdce31792c4f77d8d3de2c69abf30aa9075 --- /dev/null +++ b/recipes/wip/dev/kicad/recipe.toml @@ -0,0 +1,18 @@ +#TODO missing script for CMake, see https://dev-docs.kicad.org/en/build/linux/ +#TODO maybe missing dependencies, see https://dev-docs.kicad.org/en/build/getting-started/ +[source] +git = "https://gitlab.com/kicad/code/kicad" +rev = "942661fc10e172febf9d9990de2471d4b1020618" +[build] +template = "custom" +dependencies = [ + "wxwidgets-gtk3", + "cairo", + "boost", + "glew", + "zlib", + "freeglut", + "glm", + "curl", + "ngspice", +] diff --git a/recipes/wip/dev/ngspice/recipe.toml b/recipes/wip/dev/ngspice/recipe.toml new file mode 100644 index 0000000000000000000000000000000000000000..d8e6f1ab48f92d619f0cfc2d6c8f8dfd8a8d71c7 --- /dev/null +++ b/recipes/wip/dev/ngspice/recipe.toml @@ -0,0 +1,15 @@ +#TODO maybe wrong script, see https://sourceforge.net/p/ngspice/ngspice/ci/master/tree/INSTALL +#TODO maybe missing dependencies +[source] +tar = "https://sourceforge.net/projects/ngspice/files/ng-spice-rework/42/ngspice-42.tar.gz/download" +[build] +template = "custom" +script = """ +cd release +COOKBOOK_CONFIGURE_FLAGS+=( + --with-x + --with-readline=yes + --disable-debug +) +cookbook_configure +""" diff --git a/recipes/wip/dev/opencascade/recipe.toml b/recipes/wip/dev/opencascade/recipe.toml new file mode 100644 index 0000000000000000000000000000000000000000..cc45ac6a2c1067f4fe08fdb3cba05c598ef2c787 --- /dev/null +++ b/recipes/wip/dev/opencascade/recipe.toml @@ -0,0 +1,11 @@ +#TODO missing script for CMake, see https://dev.opencascade.org/doc/overview/html/build_upgrade__building_occt.html +#TODO missing dependencies, see https://dev.opencascade.org/doc/overview/html/build_upgrade_building_3rdparty.html#build_3rdparty_linux +[source] +tar = "https://github.com/Open-Cascade-SAS/OCCT/archive/refs/tags/V7_8_0.tar.gz" +[build] +template = "custom" +dependencies = [ + "freetype2", + "tcl", + "tk", +] diff --git a/recipes/wip/dev/tcl/recipe.toml b/recipes/wip/dev/tcl/recipe.toml new file mode 100644 index 0000000000000000000000000000000000000000..ea2c70a20c40437a05a37995aa9c5c41745e6c6c --- /dev/null +++ b/recipes/wip/dev/tcl/recipe.toml @@ -0,0 +1,9 @@ +#TODO maybe wrong template, see https://www.tcl.tk/doc/howto/compile.html#unix +[source] +tar = "http://prdownloads.sourceforge.net/tcl/tcl8.6.13-src.tar.gz" +[build] +template = "custom" +script = """ +cd unix +cookbook_configure +""" \ No newline at end of file diff --git a/recipes/wip/dev/tk/recipe.toml b/recipes/wip/dev/tk/recipe.toml new file mode 100644 index 0000000000000000000000000000000000000000..a52bfa6f77f00ecb92257121fd71fb11151ad680 --- /dev/null +++ b/recipes/wip/dev/tk/recipe.toml @@ -0,0 +1,9 @@ +#TODO maybe wrong template, see https://www.tcl.tk/doc/howto/compile.html#unix +[source] +tar = "http://prdownloads.sourceforge.net/tcl/tk8.6.13-src.tar.gz" +[build] +template = "custom" +script = """ +cd unix +cookbook_configure +""" diff --git a/recipes/wip/libs/wxpython/recipe.toml b/recipes/wip/libs/wxpython/recipe.toml new file mode 100644 index 0000000000000000000000000000000000000000..d75808cb2f8b4a7a46b0d33f881c50b5102a0c27 --- /dev/null +++ b/recipes/wip/libs/wxpython/recipe.toml @@ -0,0 +1,8 @@ +#TODO missing script for Python, see https://wiki.wxpython.org/How%20to%20install%20wxPython#Installing_wxPython_from_source +[source] +tar = "https://files.pythonhosted.org/packages/aa/64/d749e767a8ce7bdc3d533334e03bb1106fc4e4803d16f931fada9007ee13/wxPython-4.2.1.tar.gz" +[build] +template = "custom" +dependencies = [ + "wxwidgets-gtk3", +] diff --git a/recipes/wip/tools/toipe/recipe.toml b/recipes/wip/tools/toipe/recipe.toml new file mode 100644 index 0000000000000000000000000000000000000000..5ee874ad2e9ad076d417e0ac554b3d0384e87f01 --- /dev/null +++ b/recipes/wip/tools/toipe/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/Samyak2/toipe" +[build] +template = "cargo"