diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2016-06-22 13:46:11 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2016-06-22 13:46:11 +0200 |
commit | 9efebb04412fcb06c488a4eab38cfec42f8361a9 (patch) | |
tree | e9a57ca0220eb8882a3d085a2f7c667d58252a4a /testing | |
parent | cbbbd410bcb0f12043ecf094349fef63ed7e0a3d (diff) | |
download | aports-9efebb04412fcb06c488a4eab38cfec42f8361a9.tar.bz2 aports-9efebb04412fcb06c488a4eab38cfec42f8361a9.tar.xz |
testing/etcd: don't strip binary (go binaries shouldn't be stripped)
Also change license to conform with:
http://wiki.alpinelinux.org/wiki/Creating_an_Alpine_package#license
Diffstat (limited to 'testing')
-rw-r--r-- | testing/etcd/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/testing/etcd/APKBUILD b/testing/etcd/APKBUILD index 8a9ac95142..b84311fd6c 100644 --- a/testing/etcd/APKBUILD +++ b/testing/etcd/APKBUILD @@ -2,14 +2,15 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=etcd pkgver=2.3.7 -pkgrel=0 +pkgrel=1 pkgdesc="A highly-available key value store for shared configuration and service discovery" url="https://github.com/coreos/etcd" arch="x86_64" -license="APACHE2.0" +license="ASL 2.0" depends="" depends_dev="" makedepends="$depends_dev go" +options="!strip" install="$pkgname.pre-install" subpackages="" pkgusers="$pkgname" @@ -21,7 +22,7 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/coreos/etcd/archive/v$pkgver builddir="$srcdir"/$pkgname-$pkgver build() { cd "$builddir" - ./build + ./build || return 1 } package() { |