mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Diffutils 3.11 => 3.12 * Add built packages for linux/386 to update-diffutils * Add built packages for linux/amd64 to update-diffutils * Add built packages for linux/arm/v7 to update-diffutils --------- Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: uberhacker <uberhacker@users.noreply.github.com>
25 lines
947 B
Ruby
25 lines
947 B
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'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url "https://ftpmirror.gnu.org/diffutils/diffutils-#{version}.tar.xz"
|
|
source_sha256 '7c8b7f9fc8609141fdea9cece85249d308624391ff61dedaf528fcb337727dfd'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'cf0ff62b56328ae1c00e836a57c3ef0cdff7994ec7bce27e968529e680a415d8',
|
|
armv7l: 'cf0ff62b56328ae1c00e836a57c3ef0cdff7994ec7bce27e968529e680a415d8',
|
|
i686: '8e11ee13f8672b8c8173fa633f179b87eec4aeece387a841be6c369d24729206',
|
|
x86_64: '8b9716212d82a83cace07374822b1d5a5fcf5ff0fd72159d02895bcd117bb734'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libsigsegv' # R
|
|
|
|
configure_options '--disable-year2038' unless ARCH == 'x86_64'
|
|
end
|