homebrew-core/Formula/ki18n.rb

72 lines
2.4 KiB
Ruby

class Ki18n < Formula
desc "KDE Gettext-based UI text internationalization"
homepage "https://api.kde.org/frameworks/ki18n/html/index.html"
url "https://download.kde.org/stable/frameworks/5.89/ki18n-5.89.0.tar.xz"
sha256 "e6815b02f5ca8ddf8c4fd3687c8d6d2ca45dbb396d8fdd78b4ca42d4b80798fe"
license all_of: [
"BSD-3-Clause",
"LGPL-2.0-or-later",
any_of: ["LGPL-2.1-only", "LGPL-3.0-only"],
]
head "https://invent.kde.org/frameworks/ki18n.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_big_sur: "90f84eaab721a70ed06c3840a08091a3df597617f4a9bab21c8517c583ced0c2"
sha256 cellar: :any, big_sur: "ed5ae9921e1a72c1275309e89ae00aa5ca9ee1ac57c64027a424b2c6aec2bbaf"
sha256 cellar: :any, catalina: "f8f842c45a751d2443f1abe878379ea02274b2903d1dd116246d0dbae9a97263"
end
depends_on "cmake" => [:build, :test]
depends_on "doxygen" => :build
depends_on "extra-cmake-modules" => [:build, :test]
depends_on "graphviz" => :build
depends_on "gettext"
depends_on "qt@5"
def install
args = std_cmake_args
args << "-DBUILD_TESTING=OFF"
args << "-DBUILD_QCH=ON"
system "cmake", "-S", ".", "-B", "build", *args
system "cmake", "--build", "build"
system "cmake", "--install", "build"
pkgshare.install "autotests"
(pkgshare/"cmake").install "cmake/FindLibIntl.cmake"
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(KF5I18n REQUIRED)
INCLUDE(CheckCXXSourceCompiles)
find_package(LibIntl)
set_package_properties(LibIntl PROPERTIES TYPE REQUIRED)
add_subdirectory(autotests)
EOS
cp_r (pkgshare/"autotests"), testpath
args = std_cmake_args
args << "-DQt5_DIR=#{Formula["qt@5"].opt_prefix/"lib/cmake/Qt5"}"
args << "-DLibIntl_INCLUDE_DIRS=#{Formula["gettext"].include}"
args << "-DLibIntl_LIBRARIES=#{Formula["gettext"].lib/"libintl.dylib"}"
system "cmake", testpath.to_s, *args
system "make"
end
end