| author | Urja (ARMLFS builder)
<urja+armlfs@urja.dev> 2025-12-23 14:42:42 UTC |
| committer | Urja (ARMLFS builder)
<urja+armlfs@urja.dev> 2025-12-23 14:42:42 UTC |
| parent | 0dcd93bd151f08dd058d356dcf8e8a478638fd51 |
| .SRCINFO | +1 | -0 |
| .gitignore | +2 | -0 |
| PKGBUILD | +5 | -6 |
diff --git a/.SRCINFO b/.SRCINFO index 457260e..69743fd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -4,6 +4,7 @@ pkgbase = ripgrep pkgrel = 1 url = https://github.com/BurntSushi/ripgrep arch = x86_64 + arch = armv7h license = MIT OR Unlicense makedepends = rust depends = gcc-libs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a43258a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/src/ +/pkg/ diff --git a/PKGBUILD b/PKGBUILD index c411094..5e91c40 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ripgrep pkgver=15.1.0 pkgrel=1 pkgdesc="A search tool that combines the usability of ag with the raw speed of grep" -arch=('x86_64') +arch=('x86_64' 'armv7h') url="https://github.com/BurntSushi/ripgrep" license=('MIT OR Unlicense') depends=( @@ -24,11 +24,10 @@ build() { cargo build --release --locked --features 'pcre2' } -check() { - cd "$pkgname-$pkgver" - - cargo test --release --locked --features 'pcre2' -} +#check() { +## cd "$pkgname-$pkgver" +# cargo test --release --locked --features 'pcre2' +#} package() { cd "$pkgname-$pkgver"