blob: 5d83ffbe7087e227a8aa367228982a9f8768ac55 (
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
|
# Maintainer: PawkyPenguin
_pkgname=vim-please-dont
pkgname=${_pkgname}-git
pkgbase=$_pkgname
pkgver=1.0
pkgrel=1
pkgdesc='A vim plugin that adds auto-indentation for deliberately poor style'
arch=('any')
url="https://github.com/PawkyPenguin/${_pkgname}"
license=('GPL3')
depends=('vim')
makedepends=('git')
groups=('vim-plugins')
source=("git+https://github.com/PawkyPenguin/${_pkgname}.git")
sha256sums=('SKIP')
package() {
cd "${srcdir}/${_pkgname}"
local installpath="${pkgdir}/usr/share/vim/vimfiles"
install -D -m644 "plugin/please-dont.vim" "${installpath}/plugin/please-dont.vim"
}
|