Files
chromebrew/packages/sed.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

30 lines
1.1 KiB
Ruby

require 'buildsystems/autotools'
class Sed < Autotools
description 'sed (stream editor) is a non-interactive command-line text editor.'
homepage 'https://www.gnu.org/software/sed/'
version '4.9-b4d01a9'
license 'GPL-3'
compatibility 'all'
source_url 'https://git.savannah.gnu.org/git/sed.git'
git_hashtag 'b4d01a9c9174b514fd9ccac50f6e7990a1e86fbe'
# source_url "https://ftp.gnu.org/gnu/sed/sed-#{version.split('-').first}.tar.lz"
# source_sha256 '6e226b732e1cd739464ad6862bd1a1aba42d7982922da7a53519631d24975181'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '95b4f7db1c34826159e39f9d604af322f31c92f37ba9b7ce2967023080eaa61d',
armv7l: '95b4f7db1c34826159e39f9d604af322f31c92f37ba9b7ce2967023080eaa61d',
i686: 'd86bfd2d533b0f3f47bbf33f5c9d4a24c3f5fae31db4869a4c967964e0b5b17d',
x86_64: '545c56168809e37a8c84381ad16905775def14949a09595453fc8ee5ffe7e0fc'
})
depends_on 'acl' => :executable
depends_on 'attr' => :executable
depends_on 'glibc' => :executable
depends_on 'wget2' => :build
autotools_configure_options '--without-selinux \
--enable-gcc-warnings=no'
end