Date: Sunday, June 21, 2020 @ 00:28:36 Author: svenstaro Revision: 648711
upgpkg: watchexec 1.13.1-1 Modified: watchexec/trunk/PKGBUILD ----------+ PKGBUILD | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-06-21 00:24:24 UTC (rev 648710) +++ PKGBUILD 2020-06-21 00:28:36 UTC (rev 648711) @@ -2,15 +2,16 @@ # Contributor: Vlad M. <[email protected]> pkgname=watchexec -pkgver=1.12.0 +pkgver=1.13.1 pkgrel=1 pkgdesc="Executes commands in response to file modifications" url='https://github.com/watchexec/watchexec' +depends=('gcc-libs') makedepends=('cargo') arch=('x86_64') license=('Apache') source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz") -sha256sums=('e1e64c2334ab7d867e04f823c26350a8148045afd6261fd631504b2a73af53e0') +sha256sums=('b58375168233501fbdecad1737053a66eaf3b6c4aef0f5f39bc452a3eefb93d4') build() { cd "$pkgname-$pkgver" @@ -17,6 +18,11 @@ cargo build --release --locked } +check() { + cd "$pkgname-$pkgver" + cargo test --release --locked +} + package() { cd "$pkgname-$pkgver" install -Dm644 "completions/zsh" "$pkgdir/usr/share/zsh/site-functions/_watchexec"
