blob: 3e3a0f428f9d83684ec46d8db937d50605f3ac9b (
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
|
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Christian Rebischke <chris.rebischke[at]archlinux[dot]org>
pkgname=vim-sneak-git
pkgver=1.9.r6.g94c2de4
pkgrel=1
pkgdesc='Motion plugin for Vim'
arch=('any')
url='https://github.com/justinmk/vim-sneak'
license=('MIT')
groups=('vim-plugins')
depends=('vim-plugin-runtime')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("$pkgname::git+$url")
sha256sums=('SKIP')
PURGE_TARGETS=('.gitignore')
pkgver() {
git -C "$pkgname" describe --long --tags | sed 's/-/.r/;s/-/./'
}
package() {
cd "$pkgname"
find autoload doc plugin \
-type f \
-exec install -Dm 644 '{}' "$pkgdir/usr/share/vim/vimfiles/{}" \;
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
}
# vim:set et sw=2 ts=2 tw=79:
|