blob: b350114b8a7ae99558581f9e9b0caeeaed1e33c9 (
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
|
# Maintainer: Dan Van Boxel <the.dvb@gmail.com>
pkgname=slimux-git
pkgver=1.0.0.2d54abbabf
pkgrel=1
pkgdesc="SLIME inspired tmux integration plugin for Vim"
arch=('any')
url="https://github.com/epeli/${pkgname%-git}"
license=('MIT')
groups=('vim-plugins')
depends=('vim' 'tmux')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("git://github.com/epeli/${pkgname%-git}.git")
sha512sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname%-git}"
git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | cut -c2-
}
package() {
cd "${srcdir}/${pkgname%-git}"
install -dm755 "${pkgdir}/usr/share/vim/vimfiles"
find * -maxdepth 0 -type d -exec cp -rt "${pkgdir}/usr/share/vim/vimfiles" '{}' \+
}
|