summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3334b740c199b10c9901f2d99e5bd20f7260720d (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
27
28
29
30
31
32
33
pkgname=neovim-togglelist-opt-git
_pkgname=togglelist
pkgver=12.cafedc4
pkgrel=1
pkgdesc='Functions to toggle the Location List and the Quickfix List windows.'
arch=('any')
url="https://github.com/milkypostman/vim-${_pkgname}"
license=('custom:vim')
depends=('neovim')
makedepends=('git')
source=("${_pkgname}::git+${url}.git")
sha256sums=('SKIP')


pkgver() {

    cd "${srcdir}/${_pkgname}"

    echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"

}

package() {

    cd "${srcdir}/${_pkgname}"

    local _installpath="usr/local/share/nvim/site/pack/${_pkgname}/opt/${_pkgname}/"

    install -dvm755 "${pkgdir}/${_installpath}"

    cp -rvt "${pkgdir}/${_installpath}" plugin

}