37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
24 lines
700 B
Bash
24 lines
700 B
Bash
TERMUX_PKG_HOMEPAGE=https://ranger.github.io/
|
|
TERMUX_PKG_DESCRIPTION="File manager with VI key bindings"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1.9.3
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://github.com/ranger/ranger/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=ce088a04c91c25263a9675dc5c43514b7ec1b38c8ea43d9a9d00923ff6cdd251
|
|
TERMUX_PKG_DEPENDS="python, file"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=true
|
|
|
|
termux_step_make() {
|
|
echo Skipping make step...
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
python3.9 setup.py install --prefix=$TERMUX_PREFIX --force
|
|
}
|
|
|
|
termux_step_post_massage() {
|
|
find . -path '*/__pycache__*' -delete
|
|
}
|