mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Update jansson Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to libngh * Add built packages for linux/amd64 to libngh * Add built packages for linux/arm/v7 to libngh * Update libnghttp2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to libngh * Add built packages for linux/amd64 to libngh * Add built packages for linux/arm/v7 to libngh * Update ca_certificates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update libidn2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to libngh * Add built packages for linux/amd64 to libngh * Add built packages for linux/arm/v7 to libngh * Update valgrind Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to libngh * Add built packages for linux/amd64 to libngh * Add built packages for linux/arm/v7 to libngh * update curl & rust Signed-off-by: Satadru Pramanik <satadru@gmail.com> * revert rust update Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to libngh * Add built packages for linux/arm/v7 to libngh * reupload i686 build for curl Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
28 lines
931 B
Ruby
28 lines
931 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Valgrind < Autotools
|
|
description 'Valgrind is an instrumentation framework for building dynamic analysis tools.'
|
|
homepage 'https://valgrind.org/'
|
|
version '3.24.0'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://sourceware.org/git/valgrind.git'
|
|
git_hashtag "VALGRIND_#{version.gsub('.', '_')}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '13b0b51890c99c7432f4520d382b646fa95e6122da22ff8d3980486104c35226',
|
|
armv7l: '13b0b51890c99c7432f4520d382b646fa95e6122da22ff8d3980486104c35226',
|
|
i686: 'a7f5d25c1cabe433f876104d06dd7ff6b1a3ec3d242087c58d8af400f2069d13',
|
|
x86_64: '409ed13db4bd493c89df0b1418481baca53cc1836c2392da970e6a99dbadee11'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
no_lto
|
|
case ARCH
|
|
when 'aarch64', 'armv7l'
|
|
arch_flags_override
|
|
end
|
|
configure_options (ARCH == 'x86_64' ? '--enable-only64bit' : '--enable-only32bit').to_s
|
|
end
|