homebrew-core/Formula/doxygen.rb

48 lines
2.0 KiB
Ruby

class Doxygen < Formula
desc "Generate documentation for several programming languages"
homepage "https://www.doxygen.nl/"
url "https://doxygen.nl/files/doxygen-1.9.5.src.tar.gz"
mirror "https://downloads.sourceforge.net/project/doxygen/rel-1.9.5/doxygen-1.9.5.src.tar.gz"
sha256 "55b454b35d998229a96f3d5485d57a0a517ce2b78d025efb79d57b5a2e4b2eec"
license "GPL-2.0-only"
head "https://github.com/doxygen/doxygen.git", branch: "master"
livecheck do
url "https://www.doxygen.nl/download.html"
regex(/href=.*?doxygen[._-]v?(\d+(?:\.\d+)+)[._-]src\.t/i)
end
bottle do
rebuild 1
sha256 cellar: :any_skip_relocation, arm64_monterey: "88678e1605915b1ef739b2263478f2c959b3fa4c1fd149d162a5002d3c1b4dd1"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "45b5114fd928094d087064d9970f55bf7e82bda660ec87a5de3746cc3e2e0ff7"
sha256 cellar: :any_skip_relocation, monterey: "1d601108785ac9543bd7708aa2f13707f8d76efdf40211088dedcd187d6eff3a"
sha256 cellar: :any_skip_relocation, big_sur: "15785c8a4a783c3d12623b2a2658d396bbc4abff2bc828be649c06205e38b850"
sha256 cellar: :any_skip_relocation, catalina: "4b030d959ff7d9cbf77aa105f7e8e70ce4b3d6dfb61073850e591d24bba68556"
sha256 cellar: :any_skip_relocation, x86_64_linux: "95f9757ba4b568e9285707c59ff5ea3894bab08ecaada970a62347f6be69844f"
end
depends_on "bison" => :build
depends_on "cmake" => :build
depends_on "python@3.10" => :build # Fails to build with macOS Python3
uses_from_macos "flex" => :build, since: :big_sur
# Need gcc>=7.2. See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66297
fails_with gcc: "5"
fails_with gcc: "6"
def install
system "cmake", "-S", ".", "-B", "build", *std_cmake_args
system "cmake", "--build", "build"
system "cmake", "--install", "build"
system "cmake", "-S", ".", "-B", "build", "-Dbuild_doc=1", *std_cmake_args
man1.install buildpath.glob("build/man/*.1")
end
test do
system bin/"doxygen", "-g"
system bin/"doxygen", "Doxyfile"
end
end