Files
chromebrew/packages/ripgrep.rb

51 lines
1.7 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_url ({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ripgrep/12.1.0_armv7l/ripgrep-12.1.0-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ripgrep/12.1.0_armv7l/ripgrep-12.1.0-chromeos-armv7l.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ripgrep/12.1.0_x86_64/ripgrep-12.1.0-chromeos-x86_64.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