termux-packages/packages/asciinema/build.sh

26 lines
818 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"
2019-01-20 22:39:59 +01:00
TERMUX_PKG_LICENSE="GPL-3.0"
2019-01-16 22:12:09 +01:00
TERMUX_PKG_VERSION=2.0.2
2019-11-18 01:13:27 +01:00
TERMUX_PKG_REVISION=1
2019-01-16 22:12:09 +01:00
TERMUX_PKG_SHA256=2578a1b5611e5375771ef6582a6533ef8d40cdbed1ba1c87786fd23af625ab68
2015-08-20 03:17:57 +02:00
TERMUX_PKG_SRCURL=https://github.com/asciinema/asciinema/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_PLATFORM_INDEPENDENT=true
TERMUX_PKG_HAS_DEBUG=false
2018-04-08 23:45:06 +02:00
# ncurses-utils for tput which asciinema uses:
TERMUX_PKG_DEPENDS="python, ncurses-utils"
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() {
2019-11-18 01:13:27 +01:00
export PYTHONPATH=$TERMUX_PREFIX/lib/python3.8/site-packages/
python3.8 setup.py install --prefix=$TERMUX_PREFIX --force
2016-08-31 17:14:00 +02:00
}
termux_step_post_massage() {
2016-08-31 17:14:00 +02:00
find . -path '*/__pycache__*' -delete
2015-08-20 03:17:57 +02:00
}