mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 07:28:01 -05:00
* Add unbuilt augeas to augeas-1.14.1 * augeas-1.14.1: Build Run on linux/arm/v7. * augeas-1.14.1: Build Run on linux/amd64. * augeas-1.14.1: Build Run on linux/386. * augeas-1.14.1: Package File Update Run on linux/386 container. * update source Signed-off-by: Satadru Pramanik <satadru@gmail.com> * adjust source Signed-off-by: Satadru Pramanik <satadru@gmail.com> * augeas-1.14.1: Build Run on linux/amd64. * augeas-1.14.1: Build Run on linux/386. * augeas-1.14.1: Build Run on linux/arm/v7. * augeas-1.14.1: Package File Update Run on linux/386 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
23 lines
797 B
Ruby
23 lines
797 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Augeas < Autotools
|
|
description 'Augeas is a configuration editing tool that parses native formats and transforms them into a tree.'
|
|
homepage 'http://augeas.net/'
|
|
version '1.14.1'
|
|
license 'LGPL-2.1'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/hercules-team/augeas.git'
|
|
git_hashtag "release-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e9dd7440cce4c14974d16067391c94e1843e95f97f365417a072f67f0b8942c2',
|
|
armv7l: 'e9dd7440cce4c14974d16067391c94e1843e95f97f365417a072f67f0b8942c2',
|
|
i686: 'b96ac5006edaf4bf7798780e8d79d2dffeb65e72776f7122b41d7df49ba03672',
|
|
x86_64: 'aec53220195d0b711d890c282c4babcc2ee546da79858efa815186a23bfee61c'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
end
|