blob: c9cb4d0e8febc36a13b56ce6dfee5b6987420815 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Ankit R Gadiya <arch@argp.in>
pkgname=vim-tcomment
pkgver=3.08.1
pkgrel=3
pkgdesc="An extensible & universal comment vim-plugin that also handles embedded filetypes"
license=('GPL3')
arch=('any')
url="https://github.com/tomtom/tcomment_vim"
depends=('vim')
groups=('vim-plugins')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tomtom/tcomment_vim/archive/${pkgver}.tar.gz")
md5sums=('6ea8f4ce78411efba444a0218e111219')
package() {
install -Dm755 "tcomment_vim-${pkgver}/plugin/tcomment.vim" \
"${pkgdir}/usr/share/vim/vimfiles/plugin/tcomment.vim"
install -Dm755 "tcomment_vim-${pkgver}/doc/tcomment.txt" \
"${pkgdir}/usr/share/vim/vimfiles/doc/tcomment.txt"
install -Dm755 "tcomment_vim-${pkgver}/autoload/tcomment.vim" \
"${pkgdir}/usr/share/vim/vimfiles/autoload/tcomment.vim"
}
|