mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* abseil_cpp 20240116.2 => 20250127.1 * Add built packages for linux/386 to update-abseil-cpp * Add built packages for linux/amd64 to update-abseil-cpp * Add built packages for linux/arm/v7 to update-abseil-cpp --------- Co-authored-by: SupeChicken666 <supechicken666@gmail.com> Co-authored-by: supechicken <supechicken@users.noreply.github.com> Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com>
26 lines
783 B
Ruby
26 lines
783 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Abseil_cpp < CMake
|
|
description 'Abseil Common Libraries C++'
|
|
homepage 'https://abseil.io/'
|
|
version '20250127.1'
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/abseil/abseil-cpp.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a4f109d7d7bc78f3663934357e9885bc7e1fd6dd3210a6f2f0191d9172c9b3af',
|
|
armv7l: 'a4f109d7d7bc78f3663934357e9885bc7e1fd6dd3210a6f2f0191d9172c9b3af',
|
|
i686: '70a6a6737c7fd62da61050a1c51eb62b89009aa5b4884f02ec3be1cf20115517',
|
|
x86_64: 'ba62e359590d23b9adce63d76e6ac338ec4fe436f7820df99bb388d1cdbfa1eb'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glibc_lib' # R
|
|
|
|
cmake_options '-DBUILD_SHARED_LIBS=ON'
|
|
end
|