115 lines
3.6 KiB
Ruby
115 lines
3.6 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.91/kdoctools-5.91.0.tar.xz"
|
|
sha256 "7620010ddfaec988715be343af4e35f8bac75b5e14d1fa9d3bdbbe620925990a"
|
|
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_monterey: "e18d8677e0c3ffd6d61dabb96f32f6358cc35174ac3cdb36074820b511ecc2a1"
|
|
sha256 cellar: :any, arm64_big_sur: "becce4bb11ef82cfcec0848bd1c79e796e64837eae449b492f53ed0c30c073b9"
|
|
sha256 cellar: :any, big_sur: "f7493484fd34be0179ebbdde6f8b97048158890e8386dc9f1acd5b9b61a829dd"
|
|
sha256 cellar: :any, catalina: "941c6841ceff5e6eb896ee747a04ec791ec54299d1621cd8f3a3aa286e81b26d"
|
|
end
|
|
|
|
depends_on "cmake" => [:build, :test]
|
|
depends_on "docbook-xsl" => [:build, :test]
|
|
depends_on "doxygen" => :build
|
|
depends_on "extra-cmake-modules" => [:build, :test]
|
|
depends_on "gettext" => :build
|
|
depends_on "ki18n" => :build
|
|
|
|
depends_on "karchive"
|
|
|
|
uses_from_macos "libxml2"
|
|
uses_from_macos "libxslt"
|
|
uses_from_macos "perl"
|
|
|
|
resource "URI::Escape" do
|
|
url "https://cpan.metacpan.org/authors/id/O/OA/OALDERS/URI-5.09.tar.gz"
|
|
sha256 "03e63ada499d2645c435a57551f041f3943970492baa3b3338246dab6f1fae0a"
|
|
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
|