termux-packages/packages/asciinema/build.sh

23 lines
741 B
Bash
Raw Normal View History

2015-08-20 03:17:57 +02:00
TERMUX_PKG_HOMEPAGE=https://asciinema.org/
TERMUX_PKG_DESCRIPTION="Record and share your terminal sessions, the right way"
2017-04-11 21:29:26 +02:00
TERMUX_PKG_VERSION=1.4.0
2016-08-31 17:14:00 +02:00
# ncurses-utils for tput which asciinema uses:
TERMUX_PKG_DEPENDS="python, ncurses-utils"
2015-08-20 03:17:57 +02:00
TERMUX_PKG_SRCURL=https://github.com/asciinema/asciinema/archive/v${TERMUX_PKG_VERSION}.tar.gz
2017-04-11 21:29:26 +02:00
TERMUX_PKG_SHA256=841a55b0f51988d5e155e99badbd6ce5cf3b43cca2ba15cd20c971a19719dc9a
2015-08-20 03:17:57 +02:00
TERMUX_PKG_BUILD_IN_SRC=yes
2016-08-31 17:14:00 +02:00
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
2015-08-20 03:17:57 +02:00
termux_step_make () {
2016-08-31 17:14:00 +02:00
return
2015-08-20 03:17:57 +02:00
}
termux_step_make_install () {
2017-01-15 19:37:14 +01:00
export PYTHONPATH=$TERMUX_PREFIX/lib/python3.6/site-packages/
python3.6 setup.py install --prefix=$TERMUX_PREFIX --force
2016-08-31 17:14:00 +02:00
}
2016-08-31 17:14:00 +02:00
termux_step_post_massage () {
find . -path '*/__pycache__*' -delete
2015-08-20 03:17:57 +02:00
}