summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD9
2 files changed, 7 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 39926f3ec285..30041d2e74d9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = cri-o
pkgdesc = Open Container Initiative-based implementation of Kubernetes Container Runtime Interface
pkgver = 1.13.6
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/kubernetes-sigs/cri-o
arch = x86_64
license = Apache
diff --git a/PKGBUILD b/PKGBUILD
index 1181acf1ca77..d92c851de67f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=cri-o
pkgver=1.13.6
-pkgrel=1
+pkgrel=2
pkgdesc='Open Container Initiative-based implementation of Kubernetes Container Runtime Interface'
arch=(x86_64)
url='https://github.com/kubernetes-sigs/cri-o'
@@ -27,8 +27,11 @@ build() {
sed -i 's/$(GO) build -i/$(GO) build/' Makefile
sed -i 's#../bin/conmon: config.h $(obj) | ../bin#../bin/conmon: $(obj) | config.h ../bin#' conmon/Makefile
- export GOPATH="${srcdir}/go"
- make all
+
+ export GOPATH="${srcdir}/go" PATH="${srcdir}/go/bin:${PATH}"
+
+ make install.tools
+ make
./bin/crio --selinux=true \
--storage-driver=overlay \