github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/tools/dashboard/env/linux-x86-nacl/scripts/install-apt-deps.sh (about) 1 set -ex 2 3 apt-get update 4 # curl is needed to fetch the sel_ldr nacl binaries: 5 apt-get install -y --no-install-recommends curl ca-certificates 6 # For building Go's bootstrap 'dist' prog 7 apt-get install -y --no-install-recommends gcc libc6-dev 8 # For interacting with the Go source & subrepos: 9 apt-get install -y --no-install-recommends git-core 10 # For 32-bit nacl: 11 apt-get install -y --no-install-recommends libc6-i386 libc6-dev-i386 lib32stdc++6 gcc-multilib 12 13 apt-get clean 14 rm -fr /var/lib/apt/lists