summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 06b6f1a007d1fd8e7521e83df7d6a1135bbee649 (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
34
35
pkgname=neovim-surround-opt-git
pkgver=235.8f2af76
_pkgname=surround
pkgrel=1
pkgdesc='Add/change/delete surrounding delimiter pairs with ease.'
arch=('any')
url="https://github.com/kylechui/nvim-${_pkgname}"
license=('MIT')
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}" doc lua queries

    install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"

}