homebrew-core/Formula/kde-ki18n.rb

61 lines
2.0 KiB
Ruby

class KdeKi18n < 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.72/ki18n-5.72.0.tar.xz"
sha256 "080e6f0e71a82f5aa72d47f52c3a8b2cddf3491897b3484b6d22c248dd669f6a"
head "https://invent.kde.org/frameworks/ki18n.git"
bottle do
sha256 "8d84df557d029ce431ff7dc18388d5d726fc62ef191ecc486e043edaf90be68f" => :catalina
sha256 "268a6bf5acb9516833b16bc0c6321041b151864736a2f44b26947659a397581d" => :mojave
sha256 "3f907c21fadfbb93e66b4777c0399eefa29bbb48fb04b9c951f21d8272b09177" => :high_sierra
end
depends_on "cmake" => [:build, :test]
depends_on "doxygen" => :build
depends_on "graphviz" => :build
depends_on "kde-extra-cmake-modules" => [:build, :test]
depends_on "gettext"
depends_on "qt"
def install
args = std_cmake_args
args << "-DBUILD_TESTING=OFF"
args << "-DBUILD_QCH=ON"
mkdir "build" do
system "cmake", "..", *args
system "make", "install"
end
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"].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