summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1cc5e2c1337113fb7b4ea7ca5a5fe21613097c0e (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
# Maintainer: HelloImWar <helloimwar at proton dot me>

pkgname=neovim-fold-cycle-git
_pkgname="${pkgname%-git}"
pkgver=r15.g35bb75c
pkgrel=1
pkgdesc="This neovim plugin allows you to cycle folds open or closed"
arch=('any')
url="https://github.com/jghauser/fold-cycle.nvim"
license=('GPL')
groups=('neovim-plugins')
depends=('neovim')
makedepends=('git')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("$pkgname::git+$url.git")
sha256sums=('SKIP')

pkgver() {
	cd "$pkgname"
	echo r$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)
}

package() {
	cd "$pkgname"
	find lua \
		-type f \
		-exec install -Dm644 '{}' "$pkgdir/usr/share/nvim/runtime/pack/plugins/start/$pkgname/{}" \;
	install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
	install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
}