mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
29 lines
693 B
Bash
29 lines
693 B
Bash
# Copyright 2021-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit readme.gentoo-r1 vim-plugin
|
|
|
|
COMMIT="76ca1a20aa42edb5c65c19029968aad4625790dc"
|
|
DESCRIPTION="vim plugin: Rainbow Parentheses Improved"
|
|
HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=4176
|
|
https://github.com/luochen1990/rainbow"
|
|
SRC_URI="https://github.com/luochen1990/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${PN}-${COMMIT}"
|
|
|
|
LICENSE="Apache-2.0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
VIM_PLUGIN_HELPFILES="rainbow"
|
|
|
|
src_install() {
|
|
vim-plugin_src_install
|
|
readme.gentoo_create_doc
|
|
}
|
|
|
|
pkg_postinst() {
|
|
vim-plugin_pkg_postinst
|
|
readme.gentoo_print_elog
|
|
}
|