X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/05f44081cfb4431453a8b8a59dcff103bae92273..6bbba8f22a14ec12e942950417414be0e67620ea:/packages/asciinema/build.sh diff --git a/packages/asciinema/build.sh b/packages/asciinema/build.sh index d3518805..13cf8117 100644 --- a/packages/asciinema/build.sh +++ b/packages/asciinema/build.sh @@ -1,3 +1,6 @@ +# Go programs does not build on android-386 +# - will hopefully get fixed in go 1.6! +# https://github.com/golang/go/issues/9327 TERMUX_PKG_HOMEPAGE=https://asciinema.org/ TERMUX_PKG_DESCRIPTION="Record and share your terminal sessions, the right way" TERMUX_PKG_VERSION=1.1.1 @@ -15,6 +18,10 @@ termux_step_make () { elif [ "$TERMUX_ARCH" = "i686" ]; then export GOARCH=386 export GO386=sse2 + elif [ "$TERMUX_ARCH" = "aarch64" ]; then + export GOARCH=arm64 + elif [ "$TERMUX_ARCH" = "x86_64" ]; then + export GOARCH=amd64 else echo "ERROR: Unsupported arch: $TERMUX_ARCH" exit 1 @@ -29,7 +36,7 @@ termux_step_make () { termux_step_make_install () { cd $GOPATH/src/github.com/asciinema/asciinema export GOROOT=$HOME/lib/go/ - export PATH=$PATH:$GOROOT/bin/ + export PATH=$GOROOT/bin:$PATH PREFIX=$TERMUX_PREFIX make build PREFIX=$TERMUX_PREFIX make install }