summaryrefslogtreecommitdiffstats
path: root/ripgrep
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
committerzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
commit3ee93968e10126adc7dad5c8872f0170c3421e13 (patch)
treebcac8daa62b6c9a94a48dae87f5d3f6de1985bba /ripgrep
parent936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff)
downloadzorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz
zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz
various obsolette
Diffstat (limited to 'ripgrep')
-rw-r--r--ripgrep/.footprint10
-rw-r--r--ripgrep/MAKEPKG31
2 files changed, 41 insertions, 0 deletions
diff --git a/ripgrep/.footprint b/ripgrep/.footprint
new file mode 100644
index 0000000..62ccbdc
--- /dev/null
+++ b/ripgrep/.footprint
@@ -0,0 +1,10 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/bin/
3-rwxr-xr-x root/root usr/bin/rg
4drwxr-xr-x root/root usr/share/
5drwxr-xr-x root/root usr/share/bash-completion/
6drwxr-xr-x root/root usr/share/bash-completion/completions/
7-rw-r--r-- root/root usr/share/bash-completion/completions/rg
8drwxr-xr-x root/root usr/share/man/
9drwxr-xr-x root/root usr/share/man/man1/
10-rw-r--r-- root/root usr/share/man/man1/rg.1.gz
diff --git a/ripgrep/MAKEPKG b/ripgrep/MAKEPKG
new file mode 100644
index 0000000..d972222
--- /dev/null
+++ b/ripgrep/MAKEPKG
@@ -0,0 +1,31 @@
1#!/bin/mkpkg
2# description: Fast recursive grep using Rust regex engine
3# url: https://github.com/BurntSushi/ripgrep
4name=ripgrep
5version=15.1.0
6release=1
7makedeps=(rust)
8source=(https://github.com/BurntSushi/ripgrep/archive/$version.tar.gz)
9renames=(ripgrep-$version.tar.gz)
10
11sha256sums=(
12 "046fa01a216793b8bd2750f9d68d4ad43986eb9c0d6122600f993906012972e8"
13)
14
15build() {
16 cd $name-$version
17 rm -f .cargo/config.toml
18 cargo build --release --locked
19 install -Dm755 target/release/rg $PKG/usr/bin/rg
20 ./target/release/rg --generate man > rg.1
21 install -Dm644 rg.1 $PKG/usr/share/man/man1/rg.1
22 ./target/release/rg --generate complete-bash > rg.bash
23 install -Dm644 rg.bash $PKG/usr/share/bash-completion/completions/rg
24}
25
26signify() {
27 untrusted comment: *** OpenTUX *** public key
28 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
29}
30
31# vim: filetype=sh