From 2f66ed2543b35ac067010c5cd8461f8c8b9b3714 Mon Sep 17 00:00:00 2001 From: Dan Fortunato Date: Wed, 14 Feb 2024 22:00:06 -0500 Subject: [PATCH] Add SCTL formula --- Formula/sctl.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Formula/sctl.rb diff --git a/Formula/sctl.rb b/Formula/sctl.rb new file mode 100644 index 0000000..6fc6e81 --- /dev/null +++ b/Formula/sctl.rb @@ -0,0 +1,17 @@ +class Sctl < Formula + desc "Scientific Computing Template Library" + homepage "https://github.com/dmalhotra/SCTL" + url "https://github.com/dmalhotra/SCTL/archive/refs/tags/1.0.0.tar.gz" + sha256 "ee1c73802449d187eeeea034f9084a54b91c32ac149e4de7a7c5259e536b9826" + license "Apache-2.0" + head "https://github.com/dmalhotra/SCTL.git", branch: "master" + + def install + include.install "include/sctl" + include.install "include/sctl.hpp" + end + + test do + system "true" + end +end