Files
chromebrew/packages/bdwgc.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* Add binary_compression value to each package

* Remove binary_url values and arrays

* Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
2024-01-25 11:03:31 -05:00

22 lines
805 B
Ruby

require 'buildsystems/cmake'
class Bdwgc < CMake
description 'The Boehm-Demers-Weiser conservative C/C++ Garbage Collector'
homepage 'https://www.hboehm.info/gc/'
version '8.2.4'
license 'custom'
compatibility 'all'
source_url 'https://github.com/ivmai/bdwgc/releases/download/v8.2.4/gc-8.2.4.tar.gz'
source_sha256 '3d0d3cdbe077403d3106bb40f0cbb563413d6efdbb2a7e1cd6886595dec48fc2'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'afb82388b553021575812b5e8c788c8530f44193688123e5ff5a012122287f26',
armv7l: 'afb82388b553021575812b5e8c788c8530f44193688123e5ff5a012122287f26',
i686: 'e5187ea6bdfb5b478309039aa35e422c7a558cf0928f08af778f2a3f1362487f',
x86_64: '66a43028848541f4352b18c711d675abaa897a940fa5c2cd434b40cc5fb5851d'
})
depends_on 'glibc' # R
end