mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Bats 1.11.0 => 1.13.0 * update-bats: Package File Update Run on linux/386 container. * update-bats: Package File Update Run on linux/amd64 container. * update-bats: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
24 lines
747 B
Ruby
24 lines
747 B
Ruby
require 'package'
|
|
|
|
class Bats < Package
|
|
description 'Bash Automated Testing System'
|
|
homepage 'https://github.com/bats-core/bats-core'
|
|
version '1.13.0'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/bats-core/bats-core.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3d4611b3b3edb932d5ab561ba026530a442790ae0a49f3250360d5a808a5c5e4',
|
|
armv7l: '3d4611b3b3edb932d5ab561ba026530a442790ae0a49f3250360d5a808a5c5e4',
|
|
i686: '9ed3dbf1660222836086d6a6bee6325bbc83945792f789ad89f533bf4bd24993',
|
|
x86_64: 'dd3909855f57b21b3dcb0ed284f516f5292225843d8fed79f45da32ee85f9aea'
|
|
})
|
|
|
|
def self.install
|
|
system "./install.sh #{CREW_DEST_PREFIX} #{ARCH_LIB}"
|
|
end
|
|
end
|