mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-21 07:52:21 -04:00
24 lines
497 B
Bash
24 lines
497 B
Bash
# 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
|
|
}
|