summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1d37c1bf712b228898208e024e17fb489825b23c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Simon <contact at swz dot works>
pkgname=neovide-lunarvim
pkgver=0.1.0
pkgrel=1
pkgdesc="neovide binary and .desktop file that launches with lunarvim"
arch=("x86_64")
url="https://github.com/neovide/neovide"
conflicts=()

depends=("neovide")
optdepends=("lunarvim-git: if not installed with shell script")

license=("custom")

source=("neovide-lunarvim.desktop" "script.sh")
sha512sums=(SKIP SKIP)

package() {
  bindir="~/.local/bin"
  install -Dm755 "script.sh" "${pkgdir}/$HOME/.local/bin/${pkgname}"
  install -Dm755 "${pkgname}.desktop" "${pkgdir}/$HOME/.local/share/applications/${pkgname}.desktop"
}