summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRhinoceros2016-02-02 21:09:58 +1100
committerRhinoceros2016-02-02 21:13:03 +1100
commitae4a4710e1f834e3d35d7617bd917f9f68371ac1 (patch)
tree808b77ffd157c91300e0363855bcd4ff3c54555e
parente53ba204eb1e0fb0203823af084218cf6757824e (diff)
downloadaur-ae4a4710e1f834e3d35d7617bd917f9f68371ac1.tar.gz
Update to 1:0.7.r219.gdbb4d32-2
* Correct license * Minor style changes
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD13
2 files changed, 9 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6e6efb7a3dcf..50a7b879ed68 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,15 @@
# Generated by mksrcinfo v8
-# Tue Feb 2 06:24:39 UTC 2016
+# Tue Feb 2 10:09:55 UTC 2016
pkgbase = vim-airline-git
pkgdesc = A lean & mean statusline for vim that's light as air.
- pkgver = 0.7.r217.g8c860b7
+ pkgver = 0.7.r219.gdbb4d32
pkgrel = 2
epoch = 1
url = https://github.com/vim-airline/vim-airline
install = airline.install
arch = any
groups = vim-plugins
- license = GPL
+ license = MIT
makedepends = git
depends = vim
optdepends = otf-powerline-symbols-git: use the Powerline symbols
diff --git a/PKGBUILD b/PKGBUILD
index 3f64d3cb8d02..8369ce7239cf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,25 +2,24 @@
# Contributor: Ariel Popper <a@arielp.com>
pkgname=vim-airline-git
-pkgver=0.7.r217.g8c860b7
+pkgver=0.7.r219.gdbb4d32
pkgrel=2
epoch=1
pkgdesc="A lean & mean statusline for vim that's light as air."
arch=('any')
url='https://github.com/vim-airline/vim-airline'
-license=('GPL')
+license=('MIT')
depends=('vim')
makedepends=('git')
conflicts=('vim-airline')
provides=('vim-airline')
groups=('vim-plugins')
+source=("git+https://github.com/vim-airline/${pkgname%-git}.git")
optdepends=('otf-powerline-symbols-git: use the Powerline symbols'
'vim-airline-themes-git: alternative themes')
install='airline.install'
md5sums=('SKIP')
-source=("git+https://github.com/vim-airline/${pkgname%-git}.git")
-
pkgver() {
cd "${pkgname%-git}"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
@@ -28,8 +27,8 @@ pkgver() {
package() {
cd "${pkgname%-git}"
- local vimfiles="${pkgdir}/usr/share/vim/vimfiles"
-
- mkdir -p "${vimfiles}"
+ _installpath="${pkgdir}/usr/share/vim/vimfiles"
+ mkdir -p "${_installpath}"
cp -r autoload doc plugin t "${vimfiles}"
+ install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}