blob: 1a6b5398fd56d76b089818a11fe4cdb5f8f4165a (
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
|
# Maintainer: Luis Martinez <luis dot martinez at tuta dot io>
pkgname=vim-emmet-git
pkgver=r1079.46e6067
pkgrel=1
pkgdesc="Vim plugin for expanding abbreviations similar to Emmet"
arch=('any')
url="https://github.com/mattn/emmet-vim"
license=('MIT')
groups=('vim-plugins')
depends=('vim-plugin-runtime')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("$pkgname::git+$url")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$pkgname"
find autoload doc plugin ! -name '*.gif' \
-type f -exec install -Dvm 644 '{}' "$pkgdir/usr/share/vim/vimfiles/{}" \;
install -Dvm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
install -Dvm 644 README.mkd TUTORIAL.mkd -t "$pkgdir/usr/share/doc/$pkgname/"
}
|