mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Adjust gnu sources to not use ftpmirror. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * ed => 1.22.5 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * gnu_avoid_ftpmirror: Package File Update Run on linux/386 container. * gnu_avoid_ftpmirror: Package File Update Run on linux/amd64 container. * gnu_avoid_ftpmirror: Package File Update Run on linux/arm/v7 container. * Truncate PR Title length as per GitHub requirements. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust gnuastro compatibility. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
24 lines
883 B
Ruby
24 lines
883 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Ed < Autotools
|
|
description 'GNU ed is a line-oriented text editor.'
|
|
homepage 'http://www.gnu.org/software/ed/ed.html'
|
|
version '1.22.5'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url "https://ftp.gnu.org/gnu/ed/ed-#{version}.tar.lz"
|
|
source_sha256 '56e107ddc2f29dad6690376c15bf9751509e1ee3b8241710e44edbe5c3a158cc'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '07ed27b1eebe06ca9e12a95924fa01a70518bb6f79e5c6fe98ff7558bcb20768',
|
|
armv7l: '07ed27b1eebe06ca9e12a95924fa01a70518bb6f79e5c6fe98ff7558bcb20768',
|
|
i686: '082f377693ffd42a5dc4c5edb3ba68f544fa21a0deef0a2df9662c4a1c450bdf',
|
|
x86_64: '186637f055316add7a42ae455abfdc73b50990308d097d8d0386ff28cd342a1f'
|
|
})
|
|
|
|
# only lz archive is available for ed and it requires lzip.
|
|
depends_on 'glibc' => :executable_only
|
|
depends_on 'lzip' => :build
|
|
end
|