Files
tesses-tap/Formula/crosslang.rb
2026-05-09 05:03:09 +00:00

18 lines
530 B
Ruby

class Crosslang < Formula
desc ""
homepage ""
url "https://git.tesses.org/tesses50/crosslang/archive/v0.0.5.tar.gz"
sha256 "dd1e9834426546cd86985010ac45234deac8d010027ed4f6a7ddbfceb3b036a9"
license "GPLv3"
depends_on "cmake" => :build
depends_on "tesses50/tesses-tap/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