diff options
author | Bart Ribbers <bribbers@disroot.org> | 2018-06-11 15:17:38 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-09-12 17:45:04 +0000 |
commit | 9260d1d3dff398b80717cf5f3687ae45b000e9ec (patch) | |
tree | 851e8bcc802e946c53391e4fad4a40ac0e65b370 | |
parent | 961e089c9495c9323420197c1f0fcc7c4da2c882 (diff) | |
download | aports-9260d1d3dff398b80717cf5f3687ae45b000e9ec.tar.bz2 aports-9260d1d3dff398b80717cf5f3687ae45b000e9ec.tar.xz |
testing/flatbuffers: add flatc to installation so it can be used in cmake
-rw-r--r-- | testing/flatbuffers/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/flatbuffers/APKBUILD b/testing/flatbuffers/APKBUILD index 652fc81a72..348ef75e64 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=1 +pkgrel=2 pkgdesc="Memory Efficient Serialization Library" url="http://google.github.io/flatbuffers/" arch="all !s390x" @@ -32,6 +32,8 @@ check() { package() { cd "$builddir"/build make install DESTDIR="$pkgdir" + install -Dm755 "$builddir"/build/flatc \ + "$pkgdir"/usr/bin/flatc } sha512sums="0ba07dbe5b2fde1d0a6e14ee26ee2816062541d934eda204b846a30c019362f2626761b628c900293928b9b546dba8ca477c13182e022c3e0e0a142fd67f0696 flatbuffers-1.9.0.tar.gz" |