21 lines
450 B
Bash
21 lines
450 B
Bash
|
# Copyright 2018 Julian Ospald <hasufell@posteo.de>
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
require desktop-utils
|
||
|
require cargo [ channel=stable ]
|
||
|
require github [ user=daa84 tag="v${PV}" ]
|
||
|
|
||
|
SUMMARY="Gtk ui for neovim"
|
||
|
HOMEPAGE="https://github.com/daa84/neovim-gtk ${HOMEPAGE}"
|
||
|
|
||
|
LICENCES="GPL-3.0"
|
||
|
MYOPTIONS=""
|
||
|
|
||
|
BUGS_TO="hasufell@posteo.de"
|
||
|
|
||
|
src_install() {
|
||
|
ecargo_install
|
||
|
install_desktop_entry Exec="nvim-gtk"
|
||
|
}
|
||
|
|