diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-06-05 19:56:55 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-06-05 19:56:55 +0000 |
commit | f8db2e42897d0c620fbe8b373603fd56772d580d (patch) | |
tree | 83aab64180c630078a94c92aaea940a177e560be /testing/flatbuffers | |
parent | 92ae84e6deb06e1c69f6a2c00b886a65222329ce (diff) | |
download | aports-f8db2e42897d0c620fbe8b373603fd56772d580d.tar.bz2 aports-f8db2e42897d0c620fbe8b373603fd56772d580d.tar.xz |
testing/flatbuffers: add check
Diffstat (limited to 'testing/flatbuffers')
-rw-r--r-- | testing/flatbuffers/APKBUILD | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/testing/flatbuffers/APKBUILD b/testing/flatbuffers/APKBUILD index be4858217f..652fc81a72 100644 --- a/testing/flatbuffers/APKBUILD +++ b/testing/flatbuffers/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=flatbuffers pkgver=1.9.0 -pkgrel=0 +pkgrel=1 pkgdesc="Memory Efficient Serialization Library" url="http://google.github.io/flatbuffers/" arch="all !s390x" @@ -24,6 +24,11 @@ build() { make } +check() { + cd "$builddir"/build + make test +} + package() { cd "$builddir"/build make install DESTDIR="$pkgdir" |