mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Automake => 1.17 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to automake * Add built packages for linux/amd64 to automake * Add built packages for linux/arm/v7 to automake * Fix automake binary_compression value Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to automake * Add built packages for linux/amd64 to automake * Add built packages for linux/arm/v7 to automake --------- 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>
22 lines
864 B
Ruby
22 lines
864 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Automake < Autotools
|
|
description 'Automake is a tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.'
|
|
homepage 'https://www.gnu.org/software/automake/'
|
|
version '1.17'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url "https://ftpmirror.gnu.org/gnu/automake/automake-#{version}.tar.xz"
|
|
source_sha256 'f01d58cd6d9d77fbdca9eb4bbd5ead1988228fdb73d6f7a201f5f8d6b118b469'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '7a811c20ed1cccfa17f78d2fc20a742765354d37eaa5d889a26b2abaae036bbb',
|
|
armv7l: '7a811c20ed1cccfa17f78d2fc20a742765354d37eaa5d889a26b2abaae036bbb',
|
|
i686: '0487cf58b02db8a932cb4c8691460d8f3034d154d9905e23be5ab96f442c0445',
|
|
x86_64: 'e5bd0e72355c5aaaed40a118f253fe3004cb44a8f7325f79708820b4596d396a'
|
|
})
|
|
|
|
depends_on 'autoconf'
|
|
end
|