Date: Wednesday, September 12, 2018 @ 21:35:08 Author: heftig Revision: 380037
0.10.0-2: add pcre2 Modified: ripgrep/trunk/PKGBUILD ----------+ PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-09-12 21:33:36 UTC (rev 380036) +++ PKGBUILD 2018-09-12 21:35:08 UTC (rev 380037) @@ -2,20 +2,20 @@ # Contributor: Andrew Gallant <[email protected]> pkgname=ripgrep pkgver=0.10.0 -pkgrel=1 +pkgrel=2 pkgdesc="A search tool that combines the usability of ag with the raw speed of grep" arch=('x86_64') url="https://github.com/BurntSushi/ripgrep" license=('MIT' 'custom') -depends=('gcc-libs') +depends=('gcc-libs' 'pcre2') makedepends=('cargo' 'asciidoc') -source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz") +source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz") sha512sums=('bc193d269131823076fdb857f69a95c165e88848896379039218139136028e3705e09f1b9be33903e060c8cc37ad5b992ea70a05f6f01c6210bef535a35570c0') build() { cd "$pkgname-$pkgver" - cargo build --release + cargo build --release --features 'pcre2' } package() {
