mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Catatonit 0.1.7 => 0.2.1 * update-catatonit: Package File Update Run on linux/386 container. * update-catatonit: Package File Update Run on linux/amd64 container. * update-catatonit: 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>
20 lines
815 B
Ruby
20 lines
815 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Catatonit < Autotools
|
|
description 'A container init that is so simple its effectively brain-dead.'
|
|
homepage 'https://github.com/openSUSE/catatonit/'
|
|
version '0.2.1'
|
|
license 'GPL3'
|
|
compatibility 'all'
|
|
source_url "https://github.com/openSUSE/catatonit/releases/download/v#{version}/catatonit.tar.xz"
|
|
source_sha256 '9950425501af862e12f618bdc930ea755c46db6a16072a1462b4fc93b2bd59bc'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6bb468c2e667f596401cfdbdb39fdac06bbf016e53bd6fd24c27513e1ea2742a',
|
|
armv7l: '6bb468c2e667f596401cfdbdb39fdac06bbf016e53bd6fd24c27513e1ea2742a',
|
|
i686: '0626cda2e2df48b894e6479be6608572de3cf70cb051094f0a78f284007341d4',
|
|
x86_64: '32d504ee383cd9fdd777877f8c5aed7832264673693db459ed659346b83dc5ce'
|
|
})
|
|
end
|