summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlfredo Ramos2016-05-06 01:16:09 -0500
committerAlfredo Ramos2016-05-06 01:16:09 -0500
commit41705767e0401c641d28f8a914f4b04eb0117e8f (patch)
treec113e0a355e49605b065c17364ff8c7fe169c996
parente14ba9d2a47c34a20c029be3da552c4ec4d5d46d (diff)
downloadaur-41705767e0401c641d28f8a914f4b04eb0117e8f.tar.gz
Add license
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD10
2 files changed, 11 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 01004131a26d..d28f3f4c2a64 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,17 +1,17 @@
# Generated by mksrcinfo v8
-# Sun Apr 10 01:11:17 UTC 2016
+# Fri May 6 06:16:09 UTC 2016
pkgbase = vim-monokai-git
pkgdesc = A port of the Monokai color scheme for Vim by sickill.
- pkgver = r26.55ff654
+ pkgver = r27.2b40c36
pkgrel = 2
url = https://github.com/sickill/vim-monokai
install = vim-monokai-git.install
arch = any
groups = vim-plugins
- license = unknown
+ license = MIT
makedepends = git
optdepends = vim-python3: for vim with Python 3 interpreter support
- provides = vim-monokai=r26.55ff654
+ provides = vim-monokai=r27.2b40c36
source = git+https://github.com/sickill/vim-monokai.git
sha512sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 0c7c1a0b522c..d148d81715f7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,12 +2,12 @@
_pkgname=vim-monokai
pkgname=${_pkgname}-git
-pkgver=r26.55ff654
+pkgver=r27.2b40c36
pkgrel=2
pkgdesc='A port of the Monokai color scheme for Vim by sickill.'
arch=('any')
url='https://github.com/sickill/vim-monokai'
-license=('unknown')
+license=('MIT')
groups=('vim-plugins')
optdepends=(
@@ -35,5 +35,9 @@ package() {
# Installing package
cd "${srcdir}"/${_pkgname}
mkdir -p "${pkgdir}"/usr/share/vim/vimfiles
- cp -R ./colors "${pkgdir}"/usr/share/vim/vimfiles
+ cp -R colors "${pkgdir}"/usr/share/vim/vimfiles
+
+ # Install licence
+ mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
+ cp LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}