mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* 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)
47 lines
1.3 KiB
Ruby
47 lines
1.3 KiB
Ruby
require 'package'
|
|
|
|
class Ripgrep < Package
|
|
description 'ripgrep recursively searches directories for a regex pattern'
|
|
homepage 'https://github.com/BurntSushi/ripgrep'
|
|
version '12.1.0'
|
|
license 'Apache-2.0, BSD-2, Boost-1.0 and MIT or Unlicense'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/BurntSushi/ripgrep/archive/12.1.0.tar.gz'
|
|
source_sha256 'ca2d11dd7b7346734d47ad8073468e9c409fbe85842a608d372b8d4fb36be291'
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: '3a258a81559b077d04cf3d9912731da26d2f8398538e9a9faa3fb3e0a15aa6cd',
|
|
armv7l: '3a258a81559b077d04cf3d9912731da26d2f8398538e9a9faa3fb3e0a15aa6cd',
|
|
x86_64: '1e1b614726be5ad7de8e35921d8ea73c0fd72f4cd3d245b5dae78e356055e17b'
|
|
})
|
|
|
|
depends_on 'rust' => :build
|
|
|
|
def self.build
|
|
case ARCH
|
|
when 'aarch64', 'armv7l'
|
|
system 'rustup toolchain install 1.43.1-armv7-unknown-linux-gnueabihf'
|
|
system 'rustup default 1.43.1-armv7-unknown-linux-gnueabihf'
|
|
else
|
|
system 'rustup toolchain install stable'
|
|
system 'rustup default stable'
|
|
end
|
|
system 'cargo build --release'
|
|
end
|
|
|
|
def self.check
|
|
system 'cargo test --all'
|
|
end
|
|
|
|
def self.install
|
|
system "install -Dm755 target/release/rg #{CREW_DEST_PREFIX}/bin/rg"
|
|
end
|
|
|
|
def self.postinstall
|
|
puts
|
|
puts "Type 'rg' to get started.".lightblue
|
|
puts
|
|
end
|
|
end
|