mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gparted -> 1.8.1 in updater-gparted-1.8.1 * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * updater-gparted-1.8.1: Package File Update Run on linux/arm/v7 container. * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * Cleanup gparted. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update dependencies to use :executable instead of :executable_only Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
23 lines
867 B
Ruby
23 lines
867 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class M4 < Autotools
|
|
description 'GNU M4 is an implementation of the traditional Unix macro processor.'
|
|
homepage 'https://www.gnu.org/software/m4/'
|
|
version '1.4.21'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url "https://ftp.gnu.org/gnu/gnu/m4/m4-#{version.split('-').first}.tar.xz"
|
|
source_sha256 '664f2b1654c363a6348b688d5d475ed9ec0e7ef3c72f6f315f37fe97a2fe63eb'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5a6796ad0c6e6acad255add6cbfd757005fcec8f2668c7898d138cabf51dfb32',
|
|
armv7l: '5a6796ad0c6e6acad255add6cbfd757005fcec8f2668c7898d138cabf51dfb32',
|
|
i686: 'fb8e1c34214420b6a9a4a1acce3d2e2ed13b4e49dfede396060fdc3de005cc3f',
|
|
x86_64: '2ffed7ee8131ea0757f140cfb6ed1559463243d6b8049ded703c1cea28fbff39'
|
|
})
|
|
|
|
depends_on 'glibc' => :executable
|
|
depends_on 'libsigsegv' => :build
|
|
end
|