termux-packages/packages/ranger/build.sh

21 lines
622 B
Bash
Raw Normal View History

2018-01-29 10:38:31 +01:00
TERMUX_PKG_HOMEPAGE=https://ranger.github.io/
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DESCRIPTION="File manager with VI key bindings"
2018-09-15 21:57:23 +02:00
TERMUX_PKG_VERSION=1.9.2
TERMUX_PKG_SHA256=49a2d8dc5fa7b1c0cac0fa72d4ad704fc7107dee36cb9feb325a42754774d363
2018-01-29 10:38:31 +01:00
TERMUX_PKG_SRCURL=https://github.com/ranger/ranger/archive/v${TERMUX_PKG_VERSION}.tar.gz
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DEPENDS="python, file"
TERMUX_PKG_BUILD_IN_SRC=yes
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
2018-01-29 11:40:44 +01:00
termux_step_make() {
echo Skipping make step...
}
termux_step_make_install() {
2017-01-15 19:37:14 +01:00
python3.6 setup.py install --prefix=$TERMUX_PREFIX --force
2015-06-13 01:03:31 +02:00
}
2018-01-29 11:40:44 +01:00
termux_step_post_massage() {
find . -path '*/__pycache__*' -delete
}