diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-07-03 22:10:14 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-07-03 22:10:14 +0300 |
commit | 783fdd7e3f6d7eec3493cdc941c9c41095f6de0e (patch) | |
tree | 6aa55006d3133416172e95c7c7c659c7be065e7e /app-shells/liquidprompt/liquidprompt-2.2.1.ebuild | |
parent | app-arch/7zip: add 24.07 (diff) | |
download | gentoo-783fdd7e3f6d7eec3493cdc941c9c41095f6de0e.tar.gz gentoo-783fdd7e3f6d7eec3493cdc941c9c41095f6de0e.tar.bz2 gentoo-783fdd7e3f6d7eec3493cdc941c9c41095f6de0e.zip |
app-shells/liquidprompt: add 2.2.1
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-shells/liquidprompt/liquidprompt-2.2.1.ebuild')
-rw-r--r-- | app-shells/liquidprompt/liquidprompt-2.2.1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/app-shells/liquidprompt/liquidprompt-2.2.1.ebuild b/app-shells/liquidprompt/liquidprompt-2.2.1.ebuild new file mode 100644 index 000000000000..8aae627d6efa --- /dev/null +++ b/app-shells/liquidprompt/liquidprompt-2.2.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Full-featured & carefully designed adaptive prompt for Bash & Zsh" +HOMEPAGE="https://github.com/nojhan/liquidprompt https://liquidprompt.readthedocs.io/" +SRC_URI=" + https://github.com/nojhan/liquidprompt/releases/download/v${PV}/${PN}-v${PV}.tar.gz + -> ${P}.tar.gz + test? ( + https://raw.githubusercontent.com/rcaloras/bash-preexec/0.4.1/bash-preexec.sh + ) +" +S="${WORKDIR}/${PN}" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( dev-util/shunit2 )" + +DOCS=( CHANGELOG.md example.bashrc README.md ) + +src_test() { + cp "${DISTDIR}/bash-preexec.sh" tests/ || die + cp "$(type -P shunit2)" tests/shunit2 || die + ./tests.sh bash || die +} + +src_install() { + default + dobin liquidprompt + + insinto /usr/share/${PN} + doins -r themes templates tools + + insinto /etc/ + ./tools/config-from-doc.sh > "${T}/liquidpromptrc" || die + newins "${T}/liquidpromptrc" liquidpromptrc +} |