blob: cda007842cebedcf59a71fdd72b0b7d81dd5d29f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit vim-plugin
DESCRIPTION="Dark theme for Vim"
HOMEPAGE="https://draculatheme.com/vim"
SRC_URI="https://github.com/${PN}/vim/archive/refs/tags/v${PV}.tar.gz -> ${P}-vim.tar.gz"
S="${WORKDIR}/vim-${PV}"
LICENSE="MIT"
KEYWORDS="~amd64"
VIM_PLUGIN_HELPFILES="dracula"
src_prepare() {
vim-plugin_src_prepare
# collision with app-vim/airline-themes
rm -r autoload/airline || die
}
|