ranger: Skip running pylint

This commit is contained in:
Fredrik Fornwall
2018-01-29 11:40:44 +01:00
parent 4f79ca9a43
commit 42faba88d6

View File

@@ -7,10 +7,14 @@ TERMUX_PKG_DEPENDS="python, file"
TERMUX_PKG_BUILD_IN_SRC=yes
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
termux_step_make_install () {
termux_step_make() {
echo Skipping make step...
}
termux_step_make_install() {
python3.6 setup.py install --prefix=$TERMUX_PREFIX --force
}
termux_step_post_massage () {
termux_step_post_massage() {
find . -path '*/__pycache__*' -delete
}