Add 'vim-logstash-git/' from commit '8c693aad7c3c7e10f8a14c1c4b33f5fa4ea0596d'

git-subtree-dir: vim-logstash-git
git-subtree-mainline: e2f274607b
git-subtree-split: 8c693aad7c
This commit is contained in:
Cedric Girard 2019-02-14 15:33:34 +01:00
commit c11ec1881e
2 changed files with 40 additions and 0 deletions

15
vim-logstash-git/.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
# Generated by mksrcinfo v8
# Tue Oct 6 15:53:50 UTC 2015
pkgbase = vim-logstash-git
pkgdesc = Vim highlights configuration files for logstash
pkgver = r11.6d96810
pkgrel = 1
url = https://github.com/robbles/logstash.vim
arch = any
license = MIT
depends = vim
source = vim-logstash::git+https://github.com/robbles/logstash.vim.git
sha256sums = SKIP
pkgname = vim-logstash-git

25
vim-logstash-git/PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
pkgname=vim-logstash-git
pkgver=r11.6d96810
pkgrel=1
pkgdesc='Vim highlights configuration files for logstash'
arch=('any')
url='https://github.com/robbles/logstash.vim'
license=('MIT')
depends=('vim')
source=("vim-logstash::git+https://github.com/robbles/logstash.vim.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir"/vim-logstash
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir"/vim-logstash
local installpath="$pkgdir/usr/share/vim/vimfiles"
install -Dm644 ftdetect/logstash.vim "$installpath/ftdetect/logstash.vim"
install -Dm644 syntax/logstash.vim "$installpath/syntax/logstash.vim"
}
# vim:set ts=2 sw=2 et: