18 lines
531 B
Ruby
18 lines
531 B
Ruby
class Crosslang < Formula
|
|
desc ""
|
|
homepage ""
|
|
url "https://git.tesses.org/tesses50/crosslang/archive/v0.0.10.tar.gz"
|
|
sha256 "78040bcf796821c3ec4c6ea1d138abac35a2e5cb617e8783d342630d0e71f1c6"
|
|
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
|