mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* 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)
24 lines
946 B
Ruby
24 lines
946 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Jemalloc < Autotools
|
|
description 'jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support.'
|
|
homepage 'http://jemalloc.net/'
|
|
version '5.3.0'
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2'
|
|
source_sha256 '2db82d1e7119df3e71b7640219b6dfe84789bc0537983c3b7ac4f7189aecfeaa'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9484d742bccf179955042cf64e600264da004e3dca493ea3c62138398a0923c5',
|
|
armv7l: '9484d742bccf179955042cf64e600264da004e3dca493ea3c62138398a0923c5',
|
|
i686: 'c024f394bc1964745453c0f4cfbd845567c26e8bb3b1d373d3ffe02cca6c5b42',
|
|
x86_64: '18fcc5b3f4412293a0f72723bbebcba5571750691a6e5ca6f5db8a7a146d5b4c'
|
|
})
|
|
|
|
depends_on 'libxslt' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
end
|