mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Bash => 5.2 patchlevel 26 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * rebuild bash Signed-off-by: Satadru Pramanik <satadru@gmail.com> * rev crew_profile_base Signed-off-by: Satadru Pramanik <satadru@gmail.com> * initial update of crew_profile_base to 0.0.15 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update hash for crew_profile_base Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add bash dep to bash_completion Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update buildessential to add bash Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update crew_profile_base hash Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
22 lines
728 B
Ruby
22 lines
728 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Bash_completion < Autotools
|
|
description 'Programmable completion functions for bash'
|
|
homepage 'https://github.com/scop/bash-completion'
|
|
version '2.13.0'
|
|
license 'GPL-2+'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/scop/bash-completion.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '89eada9fa2c7cefa756f84092b7263ad8bc0d847793cad334443e9929cfdb76d',
|
|
armv7l: '89eada9fa2c7cefa756f84092b7263ad8bc0d847793cad334443e9929cfdb76d',
|
|
i686: 'b687949c680d08cddd59c7e01d882db0f8006800dd01dcf38948d78fb9e30f25',
|
|
x86_64: 'c8794d54d7e2d25c987cc1b5a50957eedac78a65965d0270e6d8aabadd61a710'
|
|
})
|
|
|
|
depends_on 'bash' # L
|
|
end
|