diff options
author | Omar <somerand0mcat@hotmail.com> | 2024-06-24 11:47:15 +0300 |
---|---|---|
committer | Omar <somerand0mcat@hotmail.com> | 2024-06-24 11:47:15 +0300 |
commit | e45c496c68e11dc56939f1686200ced9465582da (patch) | |
tree | b59730a048ff55d4ebafbad137489b50874da3f3 /x11-themes | |
parent | www-client/firefox-developer-bin: new package (diff) | |
download | guru-e45c496c68e11dc56939f1686200ced9465582da.tar.gz guru-e45c496c68e11dc56939f1686200ced9465582da.tar.bz2 guru-e45c496c68e11dc56939f1686200ced9465582da.zip |
x11-themes/catppuccin-neovim: new package, add 1.7.0
Signed-off-by: Omar <somerand0mcat@hotmail.com>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/catppuccin-neovim/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/x11-themes/catppuccin-neovim/Manifest b/x11-themes/catppuccin-neovim/Manifest new file mode 100644 index 000000000..cd8315a1d --- /dev/null +++ b/x11-themes/catppuccin-neovim/Manifest @@ -0,0 +1 @@ +DIST catppuccin-neovim-1.7.0.tar.gz 68616 BLAKE2B dece7d3ddd4d38c2ab2da31f975894d0f6e25029d5075bd02c0d7b26b62b1d6491d54fd48486f525829ecf84d465fd582c445a3efc30aa88fbb8b2f2bf67772c SHA512 0a7cd5c7bcfbb4f945ea52201f95608679d2fec94672817dc5bc528e41d79fed88e4064e61ecbfb0a9319d706a0310abac825fefacb047cc8d2a435518fcd93a diff --git a/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild b/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild new file mode 100644 index 000000000..bd657acad --- /dev/null +++ b/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 2024 Catppuccin +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +DESCRIPTION="Soothing pastel theme for Neovim" +HOMEPAGE="https://github.com/catppuccin/nvim" +SRC_URI="https://github.com/catppuccin/nvim/archive/refs/tags/v"${PV}".tar.gz -> catppuccin-neovim-"${PV}".tar.gz" +S=""${WORKDIR}"/nvim-"${PV}"" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +DEPEND="app-editors/neovim" + +src_unpack() { + tar -xpf /var/tmp/portage/x11-themes/catppuccin-neovim-"${PV}"/distdir/catppuccin-neovim-"${PV}".tar.gz +} + +src_install() { + cd ./colors + mkdir --parents "${D}"/usr/share/nvim/runtime/colors + cp -r *.vim "${D}"/usr/share/nvim/runtime/colors +} |