blob: 63c2df693e0d8ceba68b70b2293b28b04d24e1fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit vim-plugin
DESCRIPTION="🌈Rainbow CSV - Vim plugin: Highlight columns in CSV and TSV files and run queries in SQL-like language"
HOMEPAGE="https://github.com/mechatroner/rainbow_csv"
EGIT_COMMIT="3dbbfd7d17536aebfb80f571255548495574c32b"
MY_P="${PN}-${EGIT_COMMIT}"
SRC_URI="https://github.com/mechatroner/rainbow_csv/archive/${EGIT_COMMIT}.tar.gz -> ${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
app-editors/vim
"
src_install() {
vim-plugin_src_install
}
|