diff options
Diffstat (limited to 'community/go/APKBUILD')
-rw-r--r-- | community/go/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/go/APKBUILD b/community/go/APKBUILD index c148f309ed..ea39f58e8c 100644 --- a/community/go/APKBUILD +++ b/community/go/APKBUILD @@ -9,7 +9,7 @@ arch="all" license="BSD" depends="binutils gcc" depends_dev="" -makedepends="bash go-bootstrap" +makedepends="bash" install="" subpackages="$pkgname-doc" source="https://golang.org/dl/go${pkgver/_/}.src.tar.gz @@ -50,6 +50,7 @@ fi case "$CTARGET_ARCH" in aarch64)export GOARCH="arm64" ;; +armel) export GOARCH="arm" GOARM=5 ;; armhf) export GOARCH="arm" GOARM=6 ;; armv7) export GOARCH="arm" GOARM=7 ;; s390x) export GOARCH="s390x" ;; |