summarylogtreecommitdiffstats
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
parent5c818e49dbca9a1cc776b3c7a6a235f82ba1dfec (diff)
downloadaur-24c5b588288fd0ba3ffff09e20375d60aead1a0c.tar.gz
chore: change depends docker to optional
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD7
2 files changed, 7 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index baed63923b99..61f90fca4049 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,14 @@
pkgbase = skaffold-git
pkgdesc = A command line tool that facilitates continuous development for Kubernetes applications
pkgver = 1.38.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/GoogleContainerTools/skaffold
arch = x86_64
license = Apache
makedepends = go
- depends = docker
+ optdepends = docker: One of tools for building images support by skaffold
optdepends = minikube: To use Minikube
- optdepends = kubectl: For Kubernetes support
+ optdepends = kubectl: One of tools for deploying applications support by skaffold
optdepends = bash-completion: Tab autocompletion
provides = skaffold
conflicts = skaffold
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"
)