summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMassimiliano Torromeo2017-07-03 14:27:06 +0200
committerMassimiliano Torromeo2017-07-03 14:27:06 +0200
commit5c26715c1bab88bfbcba3a89aa03805803c96107 (patch)
treef66a5c291a48927676e4c454ff5ac4522a4bcf2e /PKGBUILD
parente39c6e94aab23bbb75a7196436ea8430c3e22014 (diff)
downloadaur-5c26715c1bab88bfbcba3a89aa03805803c96107.tar.gz
Simplified build step
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 515664688389..572ecacd7b77 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=nomad
pkgver=0.5.6
-pkgrel=1
+pkgrel=2
pkgdesc="A Distributed, Highly Available, Datacenter-Aware Scheduler"
arch=('i686' 'x86_64')
url="https://www.nomadproject.io/"
@@ -48,7 +48,8 @@ build() {
fi
make bootstrap
- make release
+ mkdir -p bin
+ CGO_ENABLED=1 go build -o bin/nomad
}
package() {