-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdoxide.rb
More file actions
21 lines (19 loc) · 716 Bytes
/
doxide.rb
File metadata and controls
21 lines (19 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Doxide < Formula
desc "Modern documentation for modern C++. Configure with YAML, output Markdown."
homepage "https://doxide.org"
url "https://raw.githubusercontent.com/lawmurray/homebrew-all/master/doxide-0.0.0.tar.gz"
version "0.0.0"
sha256 "0000000000000000000000000000000000000000000000000000000000000000"
license "Apache-2.0"
depends_on "cmake" => :build
depends_on "cli11" => :build
depends_on "libyaml"
def install
system "cmake", "-DCMAKE_BUILD_TYPE=Release", "."
system "cmake", "--build", ".", "--config", "Release", "--verbose"
system "cmake", "--install", ".", "--config", "Release", "--prefix", "#{prefix}", "--verbose"
end
test do
system "true"
end
end