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
|
|
|
|
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=yes
|
2016-08-31 17:14:00 +02:00
|
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
|
2018-06-13 02:12:36 +02:00
|
|
|
TERMUX_PKG_HAS_DEBUG=no
|
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
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_make() {
|
2016-08-31 17:14:00 +02:00
|
|
|
return
|
2015-08-20 03:17:57 +02:00
|
|
|
}
|
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_make_install() {
|
2018-10-21 21:16:53 +02:00
|
|
|
export PYTHONPATH=$TERMUX_PREFIX/lib/python3.7/site-packages/
|
|
|
|
python3.7 setup.py install --prefix=$TERMUX_PREFIX --force
|
2016-08-31 17:14:00 +02:00
|
|
|
}
|
2016-02-07 23:05:57 +01:00
|
|
|
|
2019-02-08 10:37:29 +01: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
|
|
|
}
|