Last active
September 10, 2017 17:27
-
-
Save salrashid123/4fbbdcc8638f807b3787cd9e6bc19d05 to your computer and use it in GitHub Desktop.
apkbuild file for Google Cloud SDK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=google-cloud-sdk | |
pkgver=147.0.0 | |
pkgrel=0 | |
pkgdesc="Google Cloud SDK" | |
url="https://cloud.google.com/sdk" | |
arch="x86_64" | |
license="GPL" | |
depends="python libc6-compat" | |
makedepends="$depends" | |
install="" | |
source="https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-$pkgver-linux-x86_64.tar.gz" | |
builddir="$srcdir/$pkgname" | |
package() { | |
mkdir -p "$pkgdir"/ || return 1 | |
mkdir -p "$pkgdir"/usr/bin || return 1 | |
cp -R "$builddir" "$pkgdir"/ || return 1 | |
ln -s /google-cloud-sdk/bin/gcloud "$pkgdir"/usr/bin/gcloud || return 1 | |
} | |
sha1sums="16292eee83078233dd6e3ca83760314b1f95168b google-cloud-sdk-147.0.0-linux-x86_64.tar.gz" | |
md5sums="eed7bc81905ce18cf821d844430d7750 google-cloud-sdk-147.0.0-linux-x86_64.tar.gz" | |
sha256sums="d517d9971daeaa4e3d13e34a112f684320da96ce5082e20ad745035ca16375ce google-cloud-sdk-147.0.0-linux-x86_64.tar.gz" | |
sha512sums="7e9077e8aa9c91b011fea9329f43a465be63d95718183d0ec72b67a4eaacbd21693fb4c2dfd1f7526167a1fe6dcaa43f6b8afc62ab1aae60a71ae240c8972f9a google-cloud-sdk-147.0.0-linux-x86_64.tar.gz" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment