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>
24 lines
841 B
Ruby
24 lines
841 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Indent < Autotools
|
|
description 'The indent program can be used to make C language code easier to read.'
|
|
homepage 'https://www.gnu.org/software/indent/'
|
|
version '2.2.13'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url "https://ftp.gnu.org/gnu/indent/indent-#{version}.tar.xz"
|
|
source_sha256 '87ff9d801cb11969181d5b8cf8b65e65e5b24bb0c76a1b825e8098f2906fbdf4'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '7b1150e2b697451f23a882709d3b7592834d93fbd1f7cccf98f5a0b6d4ecf465',
|
|
armv7l: '7b1150e2b697451f23a882709d3b7592834d93fbd1f7cccf98f5a0b6d4ecf465',
|
|
i686: '8d9ad2085432d978bbf7377ddd904a3ab6d2e86db58fc86ef101bbf8f5138b50',
|
|
x86_64: '3bde20cd3215760975bdf8016c53cbc279fe19b8a270b4f204b5d91270941c9b'
|
|
})
|
|
|
|
depends_on 'glibc' => :executable
|
|
|
|
run_tests
|
|
end
|