diff options
author | Jonathan Waldrep | 2018-06-09 13:22:52 -0400 |
---|---|---|
committer | Jonathan Waldrep | 2018-06-09 13:22:52 -0400 |
commit | 32c1b05641b44c55229646f24d661997e745306a (patch) | |
tree | 6c32477e83280c01e51a69f7aa0cd138e011b15d | |
parent | 431b104fea01512d06ff9139a8efa579c1d9d3de (diff) | |
download | aur-32c1b05641b44c55229646f24d661997e745306a.tar.gz |
glob copy to catch future updates
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 5 insertions, 7 deletions
@@ -1,6 +1,6 @@ pkgbase = zsh-fast-syntax-highlighting-git pkgdesc = Optimized and extended zsh-syntax-highlighting - pkgver = r204.f31a2d0 + pkgver = r242.868812a pkgrel = 1 url = https://github.com/zdharma/fast-syntax-highlighting arch = any @@ -2,7 +2,7 @@ # Contributor: Niklas Bolander <niklas.bolander at gmail dot com> pkgname=zsh-fast-syntax-highlighting-git -pkgver=r204.f31a2d0 +pkgver=r242.868812a pkgrel=1 pkgdesc='Optimized and extended zsh-syntax-highlighting' arch=('any') @@ -29,11 +29,9 @@ package() { cd "${srcdir}/fast-syntax-highlighting" install -dm0755 "${_plugindir}" - install -m0644 'fast-syntax-highlighting.plugin.zsh' "${_plugindir}" - install -m0644 -- '-fast-run-git-command' "${_plugindir}" - install -m0644 'fast-highlight' "${_plugindir}" - install -m0644 'fast-read-ini-file' "${_plugindir}" - install -m0644 'fast-theme' "${_plugindir}" + install -m0644 fast-* "${_plugindir}" + install -m0644 _fast-* "${_plugindir}" + install -m0644 -- -fast-* "${_plugindir}" install -dm755 "${_licdir}" install -m0644 LICENSE "${_licdir}" |