diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-09-22 21:17:45 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-09-24 11:49:25 +0200 |
commit | 468990bcc2275162cdecac6711e274a7834454ed (patch) | |
tree | 76c8c5e98fa839ced9c60fd71cec4558fbc51003 /testing/keybase-client | |
parent | a34ec58be621a746d52aaad264c30d3f2f20c836 (diff) | |
download | aports-468990bcc2275162cdecac6711e274a7834454ed.tar.bz2 aports-468990bcc2275162cdecac6711e274a7834454ed.tar.xz |
enable stripping of go binaries
Stripping go binaries used to be an issue but nowadays it should work as
expected.
> We don't intentionally do anything that would make stripping a binary
> not OK, and strip has worked for the past five years or so.
https://groups.google.com/forum/?_escaped_fragment_=topic/golang-dev/ABppMOjYP6w#!topic/golang-dev/ABppMOjYP6w
Diffstat (limited to 'testing/keybase-client')
-rw-r--r-- | testing/keybase-client/APKBUILD | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testing/keybase-client/APKBUILD b/testing/keybase-client/APKBUILD index c1a849a8bb..a6c7bfc262 100644 --- a/testing/keybase-client/APKBUILD +++ b/testing/keybase-client/APKBUILD @@ -3,7 +3,7 @@ pkgname=keybase-client pkgver=2.5.0 _ver=${pkgver/_p/-} -pkgrel=0 +pkgrel=1 pkgdesc="CLI client for keybase.io" url="https://github.com/keybase/client" arch="all" @@ -13,7 +13,6 @@ depends_dev="" makedepends="$depends_dev go" install="" subpackages="" -options="!strip" source="$pkgname-$pkgver.tar.gz::https://github.com/${pkgname/-//}/archive/v${_ver}.tar.gz" builddir="$srcdir/client-${_ver}" |