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
16 lines
628 B
Bash
Executable File
16 lines
628 B
Bash
Executable File
TERMUX_PKG_HOMEPAGE=https://github.com/XAMPPRocky/tokei
|
|
TERMUX_PKG_DESCRIPTION="A blazingly fast CLOC (Count Lines Of Code) program"
|
|
TERMUX_PKG_LICENSE="Apache-2.0, MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=12.0.4
|
|
TERMUX_PKG_SRCURL=https://github.com/XAMPPRocky/tokei/archive/v$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=031dabbe1253af53fea8258e11eeb352371b6cf0c790db573ca7be33f761c733
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--features all"
|
|
|
|
termux_step_post_make_install() {
|
|
install -Dm700 \
|
|
"$TERMUX_PKG_SRCDIR/target/$CARGO_TARGET_NAME"/release/tokei \
|
|
"$TERMUX_PREFIX"/bin/tokei
|
|
}
|