mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -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>
30 lines
1.2 KiB
Ruby
30 lines
1.2 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Diffutils < Autotools
|
|
description 'GNU Diffutils is a package of several programs related to finding differences between files.'
|
|
homepage 'https://www.gnu.org/software/diffutils/'
|
|
version '3.12-2591992'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://git.savannah.gnu.org/git/diffutils.git'
|
|
git_hashtag '25919920377f08d6f09df804c7f8af11f5adaabe'
|
|
# git_hashtag "v#{version.split('-').first}"
|
|
# source_url "https://ftpmirror.gnu.org/diffutils/diffutils-#{version.split('-').first}.tar.xz"
|
|
# source_sha256 '7c8b7f9fc8609141fdea9cece85249d308624391ff61dedaf528fcb337727dfd'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9da51473703a968481adc92c5b43185212ae1ea14ee4b08f6b2fdc1a07af44fa',
|
|
armv7l: '9da51473703a968481adc92c5b43185212ae1ea14ee4b08f6b2fdc1a07af44fa',
|
|
i686: '1f25f7e7ce041cbbc942b07b262d05aafd525081a4fc7a5875526a6c8235e2ce',
|
|
x86_64: '5bfbb058e3f3ed009066afb381dae0e8c5d7be3f20d9f9d063ad0227f1e62aba'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'gperf' => :build
|
|
depends_on 'libsigsegv' # R
|
|
depends_on 'wget2' => :build
|
|
|
|
autotools_configure_options "--enable-gcc-warnings=no #{'--disable-year2038' unless ARCH == 'x86_64'}"
|
|
end
|