asciinema: Update from 1.3.0 to 1.4.0
[termux-packages] / packages / asciinema / build.sh
index 13cf811..dfc2fe1 100644 (file)
@@ -1,42 +1,23 @@
-# 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_VERSION=1.4.0
+# ncurses-utils for tput which asciinema uses:
+TERMUX_PKG_DEPENDS="python, ncurses-utils"
 TERMUX_PKG_SRCURL=https://github.com/asciinema/asciinema/archive/v${TERMUX_PKG_VERSION}.tar.gz
+TERMUX_PKG_SHA256=841a55b0f51988d5e155e99badbd6ce5cf3b43cca2ba15cd20c971a19719dc9a
 TERMUX_PKG_FOLDERNAME=asciinema-${TERMUX_PKG_VERSION}
 TERMUX_PKG_BUILD_IN_SRC=yes
+TERMUX_PKG_PLATFORM_INDEPENDENT=yes
 
 termux_step_make () {
-       export GOOS=android
-       export GO_LDFLAGS="-extldflags=-pie"
-       export CGO_ENABLED=1
-       if [ "$TERMUX_ARCH" = "arm" ]; then
-               export GOARCH=arm
-               export GOARM=7
-       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
-       fi
-
-       export GOPATH=$TERMUX_PKG_TMPDIR
-       cd $GOPATH
-       mkdir -p src/github.com/asciinema/asciinema/
-       cp -Rf $TERMUX_PKG_SRCDIR/* src/github.com/asciinema/asciinema/
+       return
 }
 
 termux_step_make_install () {
-       cd $GOPATH/src/github.com/asciinema/asciinema
-       export GOROOT=$HOME/lib/go/
-       export PATH=$GOROOT/bin:$PATH
-       PREFIX=$TERMUX_PREFIX make build
-       PREFIX=$TERMUX_PREFIX make install
+       export PYTHONPATH=$TERMUX_PREFIX/lib/python3.6/site-packages/
+       python3.6 setup.py install --prefix=$TERMUX_PREFIX --force
+}
+
+termux_step_post_massage () {
+       find . -path '*/__pycache__*' -delete
 }