17 lines
452 B
Ruby
17 lines
452 B
Ruby
class MyFirstBrew < Formula
|
|
desc ""
|
|
homepage ""
|
|
url "https://git.tesses.org/tesses50/my-first-brew/archive/v0.0.10.tar.gz"
|
|
sha256 "da86aa12c1cc5d6d704325700897e7cbbe2fcabc1cfe269a86b7d7437c94766e"
|
|
license "MIT"
|
|
depends_on "cmake" => :build
|
|
def install
|
|
system "cmake", "-S", ".", "-B", "build", *std_cmake_args
|
|
system "cmake", "--build", "build"
|
|
system "cmake", "--install", "build"
|
|
end
|
|
test do
|
|
system "true"
|
|
end
|
|
end
|