X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/55685947581bd35180d60e0a4b502436d0b3de81..c64a0461b9b72486a0d3328018e43fbb25a19999:/packages/asciinema/build.sh diff --git a/packages/asciinema/build.sh b/packages/asciinema/build.sh index e751c50e..7acadeb8 100644 --- a/packages/asciinema/build.sh +++ b/packages/asciinema/build.sh @@ -1,9 +1,7 @@ -# 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 +TERMUX_PKG_BUILD_REVISION=1 TERMUX_PKG_SRCURL=https://github.com/asciinema/asciinema/archive/v${TERMUX_PKG_VERSION}.tar.gz TERMUX_PKG_FOLDERNAME=asciinema-${TERMUX_PKG_VERSION} TERMUX_PKG_BUILD_IN_SRC=yes @@ -18,6 +16,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 @@ -31,8 +33,7 @@ termux_step_make () { termux_step_make_install () { cd $GOPATH/src/github.com/asciinema/asciinema - export GOROOT=$HOME/lib/go/ - export PATH=$GOROOT/bin:$PATH + termux_setup_golang PREFIX=$TERMUX_PREFIX make build PREFIX=$TERMUX_PREFIX make install }