X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/f6a562876bc2e99eaf787cf564fe4bb02c699301..39d45704001a1cdf2b44cefdbeae59a5c3886b42:/packages/asciinema/build.sh diff --git a/packages/asciinema/build.sh b/packages/asciinema/build.sh index 6e4219fc..0960aa1c 100644 --- a/packages/asciinema/build.sh +++ b/packages/asciinema/build.sh @@ -1,21 +1,22 @@ 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_VERSION=1.3.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_FOLDERNAME=asciinema-${TERMUX_PKG_VERSION} TERMUX_PKG_BUILD_IN_SRC=yes +TERMUX_PKG_PLATFORM_INDEPENDENT=yes termux_step_make () { - termux_setup_golang - 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 - PREFIX=$TERMUX_PREFIX make build - PREFIX=$TERMUX_PREFIX make install + export PYTHONPATH=$TERMUX_PREFIX/lib/python3.5/site-packages/ + python3.5 setup.py install --prefix=$TERMUX_PREFIX --force +} + +termux_step_post_massage () { + find . -path '*/__pycache__*' -delete }