New package: google-cloud-sdk-216.0.0

This commit is contained in:
Daniel Santana 2018-04-20 23:31:43 -03:00 committed by Helmut Pozimski
parent 9a0c302efc
commit 8c1ebd8a6d
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,4 @@
For bash completions, install the 'bash-completion' package.
For zsh completions, put the following code in your ~/.zshrc:
source /usr/share/google-cloud-sdk/completion.zsh.inc

View File

@ -0,0 +1,44 @@
# Template file for 'google-cloud-sdk'
pkgname=google-cloud-sdk
version=216.0.0
revision=1
wrksrc=$pkgname
noarch=yes
depends="python"
short_desc="Command-line interface for Google Cloud Platform products and services"
maintainer="Daniel Santana <daniel@santana.tech>"
license="Apache-2.0"
homepage="https://cloud.google.com/sdk"
distfiles="https://dl.google.com/dl/cloudsdk/release/downloads/for_packagers/linux/${pkgname}_${version}.orig.tar.gz"
checksum=2c7c5ae667fb1fab1185b4aedb28ff4e30dce3a5159751aa47529035b5fc848b
do_install() {
vmkdir usr/lib/$pkgname
vcopy lib usr/lib/$pkgname
vcopy bin usr/lib/$pkgname
vcopy data usr/lib/$pkgname
vcopy platform usr/lib/$pkgname
vcopy .install usr/lib/$pkgname
vmkdir usr/bin
for f in $(find $DESTDIR/usr/lib/$pkgname/bin -maxdepth 1 -type f -exec basename {} \;); do
ln -sf ../lib/$pkgname/bin/$f $DESTDIR/usr/bin/$f
done
vmkdir usr/share/$pkgname
vcopy 'completion.*.inc' usr/share/google-cloud-sdk
vmkdir usr/share/bash-completion/completions
ln -sf ../../$pkgname/completion.bash.inc $DESTDIR/usr/share/bash-completion/completions/gcloud
ln -sf gcloud $DESTDIR/usr/share/bash-completion/completions/gsutil
ln -sf gcloud $DESTDIR/usr/share/bash-completion/completions/bq
for f in help/man/**/*; do
vman $f
done
vdoc README
vdoc VERSION
vdoc RELEASE_NOTES
vlicense LICENSE
}

View File

@ -0,0 +1 @@
site="https://dl.google.com/dl/cloudsdk/release/sha256.txt"