Files
chromebrew/packages/broot.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* Add binary_compression value to each package

* Remove binary_url values and arrays

* Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
2024-01-25 11:03:31 -05:00

40 lines
1.1 KiB
Ruby

require 'package'
class Broot < Package
description 'A new way to see and navigate directory trees'
homepage 'https://dystroy.org/broot'
version '1.11.1'
license 'MIT'
compatibility 'all'
source_url 'https://github.com/Canop/broot/archive/v1.11.1.tar.gz'
source_sha256 '0cc09d5bcc5c6b80d6161c2ba234df0332c1dabd6c3c9f2f6ebe2f82b8eef5c3'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '8d4aaa0b51e835863c4fe934958b295dcac68439d82b5dcef78f7939421cf131',
armv7l: '8d4aaa0b51e835863c4fe934958b295dcac68439d82b5dcef78f7939421cf131',
i686: 'aa70d49725d6c1010c2655e1065d7681f2f384daab534542d245423d074dfe4f',
x86_64: '5eed408affc3b87e22994370f0b21566bc05988ab43640c7d949e47cfb6567ec'
})
depends_on 'rust' => :build
def self.build
system 'cargo fetch \
--manifest-path Cargo.toml'
system 'cargo build \
--release \
--frozen \
--manifest-path Cargo.toml'
end
def self.install
system "cargo install \
--frozen \
--offline \
--no-track \
--path . \
--root #{CREW_DEST_PREFIX}"
end
end