mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt inxi to updater-inxi-3.3.38-1 * updater-inxi-3.3.38-1: Build Run on linux/amd64. * updater-inxi-3.3.38-1: Build Run on linux/arm/v7. * updater-inxi-3.3.38-1: Build Run on linux/386. * updater-inxi-3.3.38-1: Package File Update Run on linux/386 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
28 lines
892 B
Ruby
28 lines
892 B
Ruby
require 'package'
|
|
|
|
class Inxi < Package
|
|
description 'inxi is a full featured CLI system information tool.'
|
|
homepage 'https://smxi.org/docs/inxi.htm'
|
|
version '3.3.38-1'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'https://codeberg.org/smxi/inxi.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e47233793b8d383936d5ce2942dbf3cb99478287072225676eb692bfa5dee001',
|
|
armv7l: 'e47233793b8d383936d5ce2942dbf3cb99478287072225676eb692bfa5dee001',
|
|
i686: 'bb1d27dc24b4d18f6d4777ad6b4b4bcef0355a800c4fe866186e1574578956fc',
|
|
x86_64: '89215fd36872af7e77459469d9f38c80f2c0e0eaed4133d245c1f1e91175df8f'
|
|
})
|
|
|
|
depends_on 'gawk'
|
|
depends_on 'perl'
|
|
|
|
def self.install
|
|
FileUtils.install 'inxi', "#{CREW_DEST_PREFIX}/bin/inxi", mode: 0o755
|
|
FileUtils.install 'inxi.1', "#{CREW_DEST_MAN_PREFIX}/man1/inxi.1", mode: 0o644
|
|
end
|
|
end
|