Files
tesses-tap/Formula/tessesframework.rb
2026-04-30 12:21:51 +00:00

18 lines
520 B
Ruby

class Tessesframework < Formula
desc ""
homepage ""
url "https://git.tesses.org/tesses50/tessesframework/archive/v0.0.3.tar.gz"
sha256 "e06f58463ac32119d1f0e8d3e629e790d1d7c2f8f71c1c015f8a0348467b2eec"
license "MIT"
depends_on "cmake" => :build
depends_on "mbedtls@3"
def install
system "cmake", "-S", ".", "-B", "build", "-DTESSESFRAMEWORK_FETCHCONTENT=OFF", *std_cmake_args
system "cmake", "--build", "build"
system "cmake", "--install", "build"
end
test do
system "true"
end
end