homebrew-core/Formula/kdoctools.rb

120 lines
4.0 KiB
Ruby

class Kdoctools < Formula
desc "Create documentation from DocBook"
homepage "https://api.kde.org/frameworks/kdoctools/html/index.html"
url "https://download.kde.org/stable/frameworks/5.101/kdoctools-5.101.0.tar.xz"
sha256 "6180aa6cd123986e0be18eaca706601388ff90a54e30d3169f06e2cabe5af847"
license all_of: [
"BSD-3-Clause",
"GPL-2.0-or-later",
"LGPL-2.1-or-later",
any_of: ["LGPL-2.1-only", "LGPL-3.0-only"],
]
head "https://invent.kde.org/frameworks/kdoctools.git", branch: "master"
# We check the tags from the `head` repository because the latest stable
# version doesn't seem to be easily available elsewhere.
livecheck do
url :head
regex(/^v?(\d+(?:\.\d+)+)$/i)
end
bottle do
sha256 cellar: :any, arm64_ventura: "aba9904efffe324bc71ee8b5ce9b6daf9ace97752f873ba9075e1b78301235b7"
sha256 cellar: :any, arm64_monterey: "95a137837cfb5ff7e94ae9d18a8405b60de5d946925eeb0b279de44568a70749"
sha256 cellar: :any, arm64_big_sur: "5cf046b3b3a0d073484c20fa57d934d566e1d96e525b6c4cdfd19bd6863e78f6"
sha256 cellar: :any, ventura: "2f4c39e39c733fee1df7a0e7ba95a5bb462eb37104283908aac50ac207a46a70"
sha256 cellar: :any, monterey: "f9887dfbdf989c17babaafedcdd4ac5b54139b5d2f55786e662164e7e3e2f6f1"
sha256 cellar: :any, big_sur: "a16dda6d718b9446a32965b7922f8a7fa5b9529d2edbc58ebfe30e279116cf45"
sha256 cellar: :any_skip_relocation, x86_64_linux: "b5376ccdaff6f1754100cd4a3889a03628c05518682b2ef80b68b00a4ab6e04d"
end
depends_on "cmake" => [:build, :test]
depends_on "doxygen" => :build
depends_on "extra-cmake-modules" => [:build, :test]
depends_on "gettext" => :build
depends_on "ki18n" => :build
depends_on "docbook-xsl"
depends_on "karchive"
uses_from_macos "libxml2"
uses_from_macos "libxslt"
uses_from_macos "perl"
fails_with gcc: "5"
resource "URI::Escape" do
url "https://cpan.metacpan.org/authors/id/O/OA/OALDERS/URI-5.12.tar.gz"
sha256 "66abe0eaddd76b74801ecd28ec1411605887550fc0a45ef6aa744fdad768d9b3"
end
def install
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
ENV.prepend_path "PERL5LIB", libexec/"lib"
resource("URI::Escape").stage do
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
system "make", "install"
end
args = std_cmake_args + %w[
-S .
-B build
-DBUILD_QCH=ON
]
system "cmake", *args
system "cmake", "--build", "build"
system "cmake", "--install", "build"
pkgshare.install ["cmake", "autotests", "tests"]
end
test do
(testpath/"CMakeLists.txt").write <<~EOS
cmake_minimum_required(VERSION 3.5)
include(FeatureSummary)
find_package(ECM #{version} NO_MODULE)
set_package_properties(ECM PROPERTIES TYPE REQUIRED)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} "#{pkgshare}/cmake")
find_package(Qt5 #{Formula["qt@5"].version} REQUIRED Core)
find_package(KF5DocTools REQUIRED)
find_package(LibXslt)
set_package_properties(LibXslt PROPERTIES TYPE REQUIRED)
find_package(LibXml2)
set_package_properties(LibXml2 PROPERTIES TYPE REQUIRED)
if (NOT LIBXML2_XMLLINT_EXECUTABLE)
message(FATAL_ERROR "xmllint is required to process DocBook XML")
endif()
find_package(DocBookXML4 "4.5")
set_package_properties(DocBookXML4 PROPERTIES TYPE REQUIRED)
find_package(DocBookXSL)
set_package_properties(DocBookXSL PROPERTIES TYPE REQUIRED)
remove_definitions(-DQT_NO_CAST_FROM_ASCII)
add_definitions(-DQT_NO_FOREACH)
add_subdirectory(autotests)
add_subdirectory(tests/create-from-current-dir-test)
add_subdirectory(tests/kdoctools_install-test)
EOS
cp_r (pkgshare/"autotests"), testpath
cp_r (pkgshare/"tests"), testpath
args = std_cmake_args + %W[
-S .
-B build
-DQt5_DIR=#{Formula["qt@5"].opt_lib}/cmake/Qt5
]
system "cmake", *args
system "cmake", "--build", "build"
end
end