1################################################################################ 2# 3# ranger 4# 5################################################################################ 6 7RANGER_VERSION = 1.7.2 8RANGER_SITE = http://ranger.nongnu.org 9RANGER_SETUP_TYPE = distutils 10RANGER_LICENSE = GPL-3.0 11RANGER_LICENSE_FILES = AUTHORS 12 13# The ranger script request python to be called with -O (optimize generated 14# bytecode slightly; also PYTHONOPTIMIZE=x). This implicitly requires the python 15# source files to be present. Therefore, the -O flag is removed when only the .pyc 16# files are installed. 17 18define RANGER_DO_NOT_GENERATE_BYTECODE_AT_RUNTIME 19 $(SED) 's%/usr/bin/python -O%/usr/bin/python%g' $(@D)/scripts/ranger 20endef 21 22ifeq ($(BR2_PACKAGE_PYTHON3_PYC_ONLY)$(BR2_PACKAGE_PYTHON_PYC_ONLY),y) 23RANGER_POST_PATCH_HOOKS += RANGER_DO_NOT_GENERATE_BYTECODE_AT_RUNTIME 24endif 25 26$(eval $(python-package)) 27