mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt cmake to cmake-2025-08-06-15-32 * cmake-2025-08-06-15-32: Build Run on linux/arm/v7. * cmake-2025-08-06-15-32: Build Run on linux/amd64. * cmake-2025-08-06-15-32: Build Run on linux/386. * cmake-2025-08-06-15-32: Package File Update Run on linux/386 container. --------- Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@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.1.0'
|
|
license 'CMake'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.kitware.com/cmake/cmake.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'facb22ae06133ecce50a6edeefc8ead311c0288aaf51289dec43978cbfd706fb',
|
|
armv7l: 'facb22ae06133ecce50a6edeefc8ead311c0288aaf51289dec43978cbfd706fb',
|
|
i686: '9f5679a1532c74ba51f9a506e7c0fd0980922166f0aaab777b15ca0d100fa7d7',
|
|
x86_64: '849c16964b376cf310acaa5fc78ce677abc70abfa7b8570aaa0f48bed39c0c7b'
|
|
})
|
|
|
|
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
|