diff options
author | Dawid Dziurla <dawidd0811@gmail.com> | 2018-04-03 13:17:48 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-04-05 06:18:46 +0000 |
commit | 3604adfc20376f43c65831700e459109afa05389 (patch) | |
tree | 07eee91249c82e798792f600eaa094397092403e /testing | |
parent | a150342ff23bc67c9a1110f42beb13f808d5eebb (diff) | |
download | aports-3604adfc20376f43c65831700e459109afa05389.tar.bz2 aports-3604adfc20376f43c65831700e459109afa05389.tar.xz |
testing/zsh-syntax-highlighting: add check(), upgrade to 0.6.0
Diffstat (limited to 'testing')
-rw-r--r-- | testing/zsh-syntax-highlighting/APKBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/testing/zsh-syntax-highlighting/APKBUILD b/testing/zsh-syntax-highlighting/APKBUILD index 476ed0e7e3..36479b966c 100644 --- a/testing/zsh-syntax-highlighting/APKBUILD +++ b/testing/zsh-syntax-highlighting/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Dawid Dziurla <dawidd0811@gmail.com> # Maintainer: Dawid Dziurla <dawidd0811@gmail.com> pkgname=zsh-syntax-highlighting -pkgver=0.5.0 +pkgver=0.6.0 pkgrel=0 pkgdesc="Fish shell like syntax highlighting for Zsh" url="https://github.com/zsh-users/zsh-syntax-highlighting" @@ -11,17 +11,21 @@ depends="zsh" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz" builddir="$srcdir/$pkgname-$pkgver" -options="!check" # no tests build() { cd "$builddir" make } +check() { + cd "$builddir" + make test +} + package() { cd "$builddir" make install DESTDIR="$pkgdir" PREFIX="/usr" \ SHARE_DIR="$pkgdir/usr/share/zsh/plugins/$pkgname" } -sha512sums="dd0dcb772add597eb6f04e9958fb960688a5a2e316d51792d573fbfe1fd43e5a63c0de2242f87837818f27d732d8872576978c950640c1d1eea92b7b01ae84b4 zsh-syntax-highlighting-0.5.0.tar.gz" +sha512sums="bb83f41336e9010aa78ee5adc9a216ee53f3b4347041d1b273083940d9db4d0e4acd960150b28c41f6e5e8d00b029f00fca6f9a46955892e4547a9f2345e3b85 zsh-syntax-highlighting-0.6.0.tar.gz" |