Files
chromebrew/packages/ed.rb
chromebrew-actions[bot] 38439537ab gparted -> 1.8.1 in updater-gparted-1.8.1 — gparted: 1.8.0 → 1.8.1 (#15055)
* 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>
2026-03-19 00:13:29 +00:00

24 lines
878 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
depends_on 'lzip' => :build
end