18 lines
520 B
Ruby
18 lines
520 B
Ruby
class Tessesframework < Formula
|
|
desc ""
|
|
homepage ""
|
|
url "https://git.tesses.org/tesses50/tessesframework/archive/v0.0.3.tar.gz"
|
|
sha256 "01a30fd38fdbe98481972031c80cc331f71f9cde0126c6f3f7341e5de65feee0"
|
|
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
|