diff options
author | Rhinoceros | 2023-01-10 22:19:28 +1100 |
---|---|---|
committer | Rhinoceros | 2023-01-10 22:19:28 +1100 |
commit | 82e75a13bf501cc5ef41966d3000378a9ce8dce8 (patch) | |
tree | 6dae7ec2a20024ac2bdb3de6b48ac1cb2c55a829 /PKGBUILD | |
parent | 4c0b581c071737531ba7ede3d21261f4e8de0d51 (diff) | |
download | aur-82e75a13bf501cc5ef41966d3000378a9ce8dce8.tar.gz |
Update to 9.3-1
* Upstream changelog: "Improved to follow the 'wincolor' option. Fixed to work on some color scheme."
* Upstream added a license
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -1,16 +1,18 @@ # Maintainer: Rhinoceros <https://aur.archlinux.org/account/rhinoceros> pkgname=vim-diffchar -pkgver=9.2 +pkgver=9.3 pkgrel=1 pkgdesc="Improve vim's diff mode, by finding exact differences between lines, character by character" arch=('any') url='http://www.vim.org/scripts/script.php?script_id=4932' -license=('unknown') # no licence https://github.com/rickhowe/diffchar.vim/issues/3 +license=('MIT') depends=('vim') groups=('vim-plugins') -source=("$pkgname-$pkgver.zip::https://www.vim.org/scripts/download_script.php?src_id=28304") -sha256sums=('abf1c939d9800420f869fa92965b5ddf7cf0bf75fbd937bed2b851ce1137ae13') +source=("$pkgname-$pkgver.zip::https://www.vim.org/scripts/download_script.php?src_id=28342" + "${pkgname}-LICENSE::https://raw.githubusercontent.com/rickhowe/diffchar.vim/master/LICENSE") +sha256sums=('1c8c8e9d49fd3167bbe8b06af148f618ffb8de36081b23f7778dca7f640ac9da' + '8f786990b7611d1208eb9b27c107e3f7c2b25da8d83f48488be63097bc7f529d') prepare() { rm doc/tags @@ -20,4 +22,6 @@ package() { _installpath="${pkgdir}/usr/share/vim/vimfiles" mkdir -p "${_installpath}" cp -r autoload doc plugin "${_installpath}" + + install -Dm644 "${pkgname}-LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } |