mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* some rebuilds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * use git source for diffutils Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update packages, add sed to core. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * adjust make build Signed-off-by: Satadru Pramanik <satadru@gmail.com> * revert make changes Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to rebuilds_and_updates * fixup sed Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to rebuilds_and_updates * Add built packages for linux/arm/v7 to rebuilds_and_updates * Update packages/sed.rb Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.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> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
28 lines
941 B
Ruby
28 lines
941 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.25.1'
|
|
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: '8d4fbb92f2511229066956af8ac710ac3e7dca966696aafeb01cfaa5051d4c88',
|
|
armv7l: '8d4fbb92f2511229066956af8ac710ac3e7dca966696aafeb01cfaa5051d4c88',
|
|
i686: '6e7ba98fb4ec8d26f24d3af4cd2ea6fe49e9e46d5c99906ecea59c00a93436fd',
|
|
x86_64: 'd31ec469f3cd72f73d05e2b41a629275bdf24542e4944b5eb846b404419fa5ac'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
no_lto
|
|
case ARCH
|
|
when 'aarch64', 'armv7l'
|
|
arch_flags_override
|
|
end
|
|
autotools_configure_options (ARCH == 'x86_64' ? '--enable-only64bit' : '--enable-only32bit').to_s
|
|
end
|