summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorJerry Y. Chen2022-06-13 11:57:55 +0800
committerJerry Y. Chen2022-06-13 11:57:55 +0800
commit24c5b588288fd0ba3ffff09e20375d60aead1a0c (patch)
treeda1d79bd44c3c96e7ae9d4c946d871ada10c462e /PKGBUILD
parent5c818e49dbca9a1cc776b3c7a6a235f82ba1dfec (diff)
downloadaur-24c5b588288fd0ba3ffff09e20375d60aead1a0c.tar.gz
chore: change depends docker to optional
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD7
1 files changed, 4 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index adb9c6ab086b..5c46ab4b66d2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,18 +9,19 @@ reponame=skaffold
provides=('skaffold')
conflicts=('skaffold')
pkgver=1.38.0
-pkgrel=1
+pkgrel=2
pkgdesc="A command line tool that facilitates continuous development for Kubernetes applications"
arch=("x86_64")
url="https://github.com/GoogleContainerTools/${reponame}"
license=("Apache")
-depends=("docker")
makedepends=("go")
optdepends=(
+ "docker: One of tools for building images support by skaffold"
"minikube: To use Minikube"
- "kubectl: For Kubernetes support"
+ "kubectl: One of tools for deploying applications support by skaffold"
"bash-completion: Tab autocompletion"
)
+
source=(
"${reponame}-${pkgver}.tar.gz::https://github.com/GoogleContainerTools/${reponame}/archive/v${pkgver}.tar.gz"
)