summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander F. Rødseth2019-02-27 12:17:24 +0100
committerAlexander F. Rødseth2019-02-27 12:17:24 +0100
commita3e2bb7f6fc435a2d1ca07bfa308e1c6c3e4829e (patch)
treefd44a93987ab4de6d877e058b17be8b70095739a
parentf74b451ffb111660ac3e1995e080bb4b0968205e (diff)
downloadaur-a3e2bb7f6fc435a2d1ca07bfa308e1c6c3e4829e.tar.gz
Fix
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD7
2 files changed, 5 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a09a84268e34..fa68ccbeb626 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Wed Feb 27 11:14:53 UTC 2019
+# Wed Feb 27 11:17:17 UTC 2019
pkgbase = k3s-git
pkgdesc = Lightweight Kubernetes
pkgver = r1.7d1baa9
- pkgrel = 4
+ pkgrel = 5
url = https://github.com/rancher/k3s
arch = x86_64
license = APACHE
diff --git a/PKGBUILD b/PKGBUILD
index d28c961ed6a6..2aa9560a85c5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=k3s-git
pkgver=r1.7d1baa9
-pkgrel=4
+pkgrel=5
pkgdesc='Lightweight Kubernetes'
arch=(x86_64)
url='https://github.com/rancher/k3s'
@@ -23,9 +23,8 @@ build() {
}
package() {
- cd $pkgname
- install -Dm755 dist/artifacts/k3s "$pkgdir/usr/bin/k3s"
- install -Dm755 dist/artifacts/hyperkube "$pkgdir/usr/bin/hyperkube"
+ install -Dm755 $pkgname/dist/artifacts/k3s "$pkgdir/usr/bin/k3s"
+ install -Dm755 $pkgname/dist/artifacts/hyperkube "$pkgdir/usr/bin/hyperkube"
install -Dm644 $pkgname/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}