From 55b42b83f437164ca18c916f82311e00c3632017 Mon Sep 17 00:00:00 2001 From: Tesses Gitea Bot Date: Thu, 30 Apr 2026 22:45:47 +0000 Subject: [PATCH] Push crosslang=v0.0.4 --- Formula/crosslang.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Formula/crosslang.rb diff --git a/Formula/crosslang.rb b/Formula/crosslang.rb new file mode 100644 index 0000000..06fc22a --- /dev/null +++ b/Formula/crosslang.rb @@ -0,0 +1,17 @@ +class Crosslang < Formula + desc "" + homepage "" + url "https://git.tesses.org/tesses50/crosslang/archive/v0.0.4.tar.gz" + sha256 "170b7c4cee235de4aa858be345f4fea07ae455efab18e585cd9625944b237e64" + license "GPLv3" + depends_on "cmake" => :build + depends_on "tessesframework" + def install + system "cmake", "-S", ".", "-B", "build", "-DCROSSLANG_FETCHCONTENT=OFF", *std_cmake_args + system "cmake", "--build", "build" + system "cmake", "--install", "build" + end + test do + system "true" + end +end