104 lines
3.3 KiB
Ruby
104 lines
3.3 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.86/kdoctools-5.86.0.tar.xz"
|
|
sha256 "9dd2a9e3930875f95b1d8e907fdc01c19d19f484d6e70c19c8f26c9aaac4b18e"
|
|
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"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "fefe2a333a634c7bb5d76df382dfb6cb5296e07f2ac8b71f7bdbcd2f48bcf41d"
|
|
sha256 cellar: :any, big_sur: "d93b4913a6c347ce00aaa01e3e5897d2ea1b1fe0577ac4a73140da18ab12dde1"
|
|
sha256 cellar: :any, catalina: "178632bf5281c898ea2de32e2020131840e0c9a534d7e2a3c6303991471bf897"
|
|
sha256 cellar: :any, mojave: "b275ce0bb6ab0eb23dd7c26d84283a35380ec49b2b43551bae43891d948278cf"
|
|
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
|
|
args << "-DBUILD_TESTING=OFF"
|
|
args << "-DBUILD_QCH=ON"
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
pkgshare.install ["cmake", "autotests", "tests"]
|
|
end
|
|
|
|
test do
|
|
(testpath/"CMakeLists.txt").write <<~EOS
|
|
cmake_minimum_required(VERSION 3.5)
|
|
include(FeatureSummary)
|
|
find_package(ECM 5.71.0 NO_MODULE)
|
|
set_package_properties(ECM PROPERTIES TYPE REQUIRED)
|
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} "#{pkgshare}/cmake")
|
|
find_package(Qt5 5.12.0 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
|
|
args << "-DQt5_DIR=#{Formula["qt@5"].opt_prefix/"lib/cmake/Qt5"}"
|
|
|
|
system "cmake", testpath.to_s, *args
|
|
system "make"
|
|
end
|
|
end
|