1 TERMUX_PKG_HOMEPAGE=https://asciinema.org/
2 TERMUX_PKG_DESCRIPTION="Record and share your terminal sessions, the right way"
3 TERMUX_PKG_VERSION=1.1.1
4 TERMUX_PKG_BUILD_REVISION=1
5 TERMUX_PKG_SRCURL=https://github.com/asciinema/asciinema/archive/v${TERMUX_PKG_VERSION}.tar.gz
6 TERMUX_PKG_FOLDERNAME=asciinema-${TERMUX_PKG_VERSION}
7 TERMUX_PKG_BUILD_IN_SRC=yes
11 export GO_LDFLAGS="-extldflags=-pie"
13 if [ "$TERMUX_ARCH" = "arm" ]; then
16 elif [ "$TERMUX_ARCH" = "i686" ]; then
19 elif [ "$TERMUX_ARCH" = "aarch64" ]; then
21 elif [ "$TERMUX_ARCH" = "x86_64" ]; then
24 echo "ERROR: Unsupported arch: $TERMUX_ARCH"
28 export GOPATH=$TERMUX_PKG_TMPDIR
30 mkdir -p src/github.com/asciinema/asciinema/
31 cp -Rf $TERMUX_PKG_SRCDIR/* src/github.com/asciinema/asciinema/
34 termux_step_make_install () {
35 cd $GOPATH/src/github.com/asciinema/asciinema
37 PREFIX=$TERMUX_PREFIX make build
38 PREFIX=$TERMUX_PREFIX make install