homebrew-core/Formula/ki18n.rb

92 lines
2.9 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.94/ki18n-5.94.0.tar.xz"
sha256 "0c5a8332343570e8530469840d67c72a28a04a7257578e5a962c73824508944a"
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 arm64_monterey: "9f1f055cc5f31d5e28438bb79df92c3d9ae657ec2896881a06d69490c1af38e9"
sha256 arm64_big_sur: "27ec1236deed8c8a12af7c8ae1074315bc6d5c47658587731237677b5e4b0ae1"
sha256 monterey: "f93583c403d70c9fca0a89123c95402a8f6de8a88d00e82e1ac60467cadb08cf"
sha256 big_sur: "fbb2f1a4ee0ecd7a4b14886c5e2ceb9d6d6e66d3eae48aed7639f233fb524c81"
sha256 catalina: "6629e4c368acd4a8d67c8286b53e726a89bca078074e06497e50a64929823a64"
sha256 x86_64_linux: "a45b0a5d8d2295b0a06be14529aa28873f552fc0f80fffa8db7ea4ccfbf7307c"
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 "iso-codes"
depends_on "qt@5"
on_linux do
depends_on "gcc"
end
fails_with gcc: "5"
def install
args = std_cmake_args + %w[
-S .
-B build
-DBUILD_QCH=ON
-DBUILD_WITH_QML=ON
]
system "cmake", *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 #{version} NO_MODULE)
set_package_properties(ECM PROPERTIES TYPE REQUIRED)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} "#{pkgshare}/cmake")
set(CMAKE_CXX_STANDARD 17)
set(QT_MAJOR_VERSION 5)
set(BUILD_WITH_QML ON)
set(REQUIRED_QT_VERSION #{Formula["qt@5"].version})
find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} REQUIRED Core Qml)
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 + %W[
-S .
-B build
-DQt5_DIR=#{Formula["qt@5"].opt_lib}/cmake/Qt5
-DLibIntl_INCLUDE_DIRS=#{Formula["gettext"].include}
-DLibIntl_LIBRARIES=#{Formula["gettext"].lib}/libintl.dylib
]
system "cmake", *args
system "cmake", "--build", "build"
end
end