diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-01-12 11:11:05 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-01-12 11:11:05 +0000 |
commit | 8e5146b88365a48ef2cbc25a43387e06e81f9b08 (patch) | |
tree | cfda1a6bfda7acc08248e4ca9ba505d1028e29db /testing | |
parent | 81039e50e1d0621ab09932f3e8e8dae385ed74a2 (diff) | |
download | aports-8e5146b88365a48ef2cbc25a43387e06e81f9b08.tar.bz2 aports-8e5146b88365a48ef2cbc25a43387e06e81f9b08.tar.xz |
testing/spreed-webrtc: add check(), cleanup
Diffstat (limited to 'testing')
-rw-r--r-- | testing/spreed-webrtc/APKBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/testing/spreed-webrtc/APKBUILD b/testing/spreed-webrtc/APKBUILD index 869cee6904..d0c8ca54e1 100644 --- a/testing/spreed-webrtc/APKBUILD +++ b/testing/spreed-webrtc/APKBUILD @@ -2,14 +2,12 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=spreed-webrtc pkgver=0.29.7 -pkgrel=0 +pkgrel=1 pkgdesc="WebRTC audio/video call and conferencing server" url="http://spreed.me" arch="all" license="AGPL-3.0" -depends= -depends_dev= -makedepends="$depends_dev autoconf automake go go-context go-acceptlanguageparser +makedepends="autoconf automake go go-context go-acceptlanguageparser go-conf go-httputils go-mux go-nats go-nuid go-pkac go-phoenix go-securecookie go-sloth go-spreed-turnservicecli go-uuid go-websocket nodejs" @@ -42,6 +40,11 @@ build() { make GOPATH="$GOPATH $builddir:$builddir/go:$builddir/src" binaryall } +check() { + cd "$builddir" + make test +} + package() { cd "$builddir" make DESTDIR="$pkgdir" install |