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
21 lines
813 B
Bash
21 lines
813 B
Bash
TERMUX_PKG_HOMEPAGE=https://lastpass.com/
|
|
TERMUX_PKG_DESCRIPTION="LastPass command line interface tool"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1.3.3
|
|
TERMUX_PKG_REVISION=5
|
|
TERMUX_PKG_SRCURL=https://github.com/lastpass/lastpass-cli/archive/v$TERMUX_PKG_VERSION/lastpass-cli-$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=f38e1ee7e06e660433a575a23b061c2f66ec666d746e988716b2c88de59aed73
|
|
TERMUX_PKG_DEPENDS="libcurl, libxml2, openssl, pinentry"
|
|
TERMUX_PKG_SUGGESTS="termux-api"
|
|
|
|
termux_step_post_make_install() {
|
|
ninja install-doc
|
|
|
|
install -Dm600 "$TERMUX_PKG_SRCDIR"/contrib/lpass_zsh_completion \
|
|
"$TERMUX_PREFIX"/share/zsh/site-functions/_lpass
|
|
|
|
install -Dm600 "$TERMUX_PKG_SRCDIR"/contrib/completions-lpass.fish \
|
|
"$TERMUX_PREFIX"/share/fish/completions/lpass.fish
|
|
}
|