23 lines
681 B
Plaintext
23 lines
681 B
Plaintext
|
# Description: ripgrep is a line-oriented search tool that recursively searches your current directory for a regex pattern
|
||
|
# URL: https://github.com/burntsushi/ripgrep
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: rust
|
||
|
|
||
|
name=ripgrep
|
||
|
version=12.1.1
|
||
|
release=1
|
||
|
source=(https://github.com/BurntSushi/ripgrep/archive/$version/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
|
||
|
mkdir "$PKGMK_SOURCE_DIR/rust" || true
|
||
|
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
|
||
|
|
||
|
cargo update
|
||
|
cargo fetch
|
||
|
cargo build --release --locked
|
||
|
ls target/release/ -la
|
||
|
install -Dt $PKG/usr/bin target/release/rg
|
||
|
}
|