Push crosslang=v0.0.4

This commit is contained in:
Tesses Gitea Bot
2026-04-30 22:45:47 +00:00
parent 463c6636d5
commit 55b42b83f4

17
Formula/crosslang.rb Normal file
View File

@@ -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