mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 17:01:34 +02:00
24 lines
873 B
Plaintext
24 lines
873 B
Plaintext
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=vim-editorconfig
|
|
pkgver=0_git20180620
|
|
_gitrev=efc613f02a7499fd1c2348cf208f10c43a9c57bc
|
|
pkgrel=0
|
|
pkgdesc="EditorConfig plugin for vim written in vimscript only"
|
|
url="https://github.com/sgur/vim-editorconfig"
|
|
arch="noarch"
|
|
license="MIT"
|
|
source="$pkgname-$_gitrev.tar.gz::https://github.com/sgur/$pkgname/archive/$_gitrev.tar.gz"
|
|
builddir="$srcdir/$pkgname-$_gitrev"
|
|
options="!check" # there are no tests
|
|
|
|
package() {
|
|
local destdir="$pkgdir/usr/share/vim/vimfiles"
|
|
cd "$builddir"
|
|
|
|
mkdir -p "$destdir"
|
|
cp -r autoload doc ftdetect ftplugin plugin "$destdir"/
|
|
}
|
|
|
|
sha512sums="a4843b7e6397a604246cf8d93682ccd936744595eae52db973768267cae0a3050a536187088c31b7746b3b6121a2714dae221c0439ced0effd3c96a88410b46f vim-editorconfig-efc613f02a7499fd1c2348cf208f10c43a9c57bc.tar.gz"
|