diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-10-03 12:55:27 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-10-03 13:50:26 +0000 |
commit | a2ab373006cba795e1a8b5dd38eca76be3fb7c21 (patch) | |
tree | 573ffb7374b0a927113d99d1525baa11672ea61f /community/tinyssh/APKBUILD | |
parent | d536fdfc4943b36919eae5c2de8f00f6eeb4f1fc (diff) | |
download | aports-a2ab373006cba795e1a8b5dd38eca76be3fb7c21.tar.bz2 aports-a2ab373006cba795e1a8b5dd38eca76be3fb7c21.tar.xz |
community/tinyssh: bump pkgrel due to libsodium upgrade, added check()
Diffstat (limited to 'community/tinyssh/APKBUILD')
-rw-r--r-- | community/tinyssh/APKBUILD | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/community/tinyssh/APKBUILD b/community/tinyssh/APKBUILD index 53984cb535..fa8889f7e4 100644 --- a/community/tinyssh/APKBUILD +++ b/community/tinyssh/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Stuart Cardall <developer@it-offshore.co.uk> pkgname=tinyssh pkgver=20161101 -pkgrel=1 +pkgrel=2 pkgdesc="Small SSH server using NaCl / TweetNaCl (no dependency on OpenSSL)" url="http://tinyssh.org/" arch="all" @@ -24,6 +24,11 @@ build() { make } +check() { + cd "$builddir" + make check +} + package() { cd "$builddir" make install DESTDIR="${pkgdir}" |