mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt cmake to updater-cmake-4.2.1 * updater-cmake-4.2.1: Package File Update Run on linux/386 container. * updater-cmake-4.2.1: Package File Update Run on linux/amd64 container. * updater-cmake-4.2.1: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
67 lines
2.3 KiB
Ruby
67 lines
2.3 KiB
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Cmake < CMake
|
|
description 'CMake is an open-source, cross-platform family of tools designed to build, test and package software.'
|
|
homepage 'https://cmake.org/'
|
|
version '4.2.1'
|
|
license 'CMake'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.kitware.com/cmake/cmake.git'
|
|
git_hashtag "v#{version.split('-').first}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd6c6ae7fd0ce7f0d622cac4852d1c90eba6c641ed97b986d750c1c9d79fb6a0a',
|
|
armv7l: 'd6c6ae7fd0ce7f0d622cac4852d1c90eba6c641ed97b986d750c1c9d79fb6a0a',
|
|
i686: 'bc77335ff8404a678827d0421bf53f410bdb8f93b1649092bab07185088840a1',
|
|
x86_64: 'fd22e57cce0510b4b0bb061cce7416ebdbb05da36759baa7b3b40789d1eef1e2'
|
|
})
|
|
|
|
depends_on 'bzip2' => :build
|
|
depends_on 'cppdap' # R
|
|
depends_on 'curl' # R
|
|
depends_on 'expat' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'jsoncpp' # R
|
|
depends_on 'libarchive' # R
|
|
depends_on 'libnghttp2' => :build
|
|
depends_on 'librhash' # R
|
|
depends_on 'libuv' # R
|
|
depends_on 'llvm_lib' => :build
|
|
depends_on 'ncurses' # R
|
|
depends_on 'xzutils' => :build
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' => :build
|
|
|
|
def self.prebuild
|
|
@current_installed_cmake_major_version = `cmake --version | head -n 1 | awk '{print \$3}'`.chomp.split('.').reverse[1..2].reverse.join('.')
|
|
@new_cmake_major_version = version.split('.').reverse[1..2].reverse.join('.')
|
|
# Only do tests on major version changes.
|
|
@cmake_testing = @current_installed_cmake_major_version != @new_cmake_major_version
|
|
puts 'Build testing will be skipped since this is not a major version change from the existing cmake.'.orange unless @cmake_testing
|
|
end
|
|
|
|
cmake_options "-DCMake_BUILD_LTO=ON \
|
|
-DCMAKE_USE_SYSTEM_LIBRARIES=ON \
|
|
-DCMAKE_USE_SYSTEM_LIBARCHIVE=ON \
|
|
-DBUILD_TESTING=#{@cmake_testing ? 'YES' : 'NO'} \
|
|
-DBUILD_QtDialog=NO"
|
|
|
|
# Failed tests:
|
|
# BundleUtilities (armv7l,x86_64)
|
|
# BootstrapTest (armv7l,i686,x86_64)
|
|
# CMakeLib.testDebuggerNamedPipe-Project (armv7l,i686,x86_64)
|
|
# CMakeLib.testDebuggerNamedPipe-Script (armv7l,i686,x86_64)
|
|
# RunCMake.CMakeRelease (armv7l,i686,x86_64)
|
|
def self.check
|
|
return unless @cmake_testing
|
|
|
|
system "#{CREW_NINJA} -C builddir test || true"
|
|
end
|
|
|
|
cmake_install_extras do
|
|
FileUtils.mv "#{CREW_DEST_PREFIX}/doc/", "#{CREW_DEST_PREFIX}/share/"
|
|
end
|
|
end
|