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
939 B
Ruby
23 lines
939 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Gengetopt < Autotools
|
|
description 'This program generates a C function that uses getopt_long function to parse the command line options, to validate them and fills a struct .'
|
|
homepage 'https://www.gnu.org/software/gengetopt/'
|
|
version '2.23'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'https://ftp.gnu.org/gnu/gengetopt/gengetopt-2.23.tar.xz'
|
|
source_sha256 'b941aec9011864978dd7fdeb052b1943535824169d2aa2b0e7eae9ab807584ac'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ad134cbf8d8cbc36a589dce0013b9f952d122700df4bab2c3cd40bc17d2a7a01',
|
|
armv7l: 'ad134cbf8d8cbc36a589dce0013b9f952d122700df4bab2c3cd40bc17d2a7a01',
|
|
i686: 'a0f64b05cbdc817d908e19031930c9624abcbd04b8865f144b3d448ed6573ac7',
|
|
x86_64: '002712609debd70bb81c76809c627914bcf7f4467f0bfdcfb5052b9f7fd19c50'
|
|
})
|
|
|
|
depends_on 'gcc_lib' => :executable
|
|
depends_on 'glibc' => :executable
|
|
end
|