aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testing/micro/APKBUILD10
1 files changed, 7 insertions, 3 deletions
diff --git a/testing/micro/APKBUILD b/testing/micro/APKBUILD
index 053a4e0907..45c4748510 100644
--- a/testing/micro/APKBUILD
+++ b/testing/micro/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer:
pkgname=micro
pkgver=2.0.2
-pkgrel=0
+pkgrel=1
# This will need to be updated along with version as it cannot currently be
# obtained from the tarball, and is necessary if the user is to make error
# reports upsteam.
@@ -25,8 +25,12 @@ prepare() {
build() {
export GOPATH="$srcdir"
- go get -v -ldflags \
- "-s -w -X main.Version=$pkgver -X main.CommitHash=$_commithash" \
+ go get -v -ldflags "
+ -s -w
+ -X github.com/zyedidia/micro/internal/util.Version=$pkgver-alpine$pkgrel
+ -X github.com/zyedidia/micro/internal/util.CommitHash=$_commithash
+ -X github.com/zyedidia/micro/internal/util.CompileDate=$SOURCE_DATE_EPOCH
+ " \
./cmd/micro
}