summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9dcc541f9d1a..cdfdf08e0e3f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = zsh-hist-git
pkgdesc = Edit your Zsh history, without ever leaving the command line.
pkgver = r55.42cd5c2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/marlonrichert/zsh-hist.git
arch = any
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index b7774fd98a78..fcd2f0d713e1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=zsh-hist-git
_pkgname=${pkgname::-4}
pkgver=r55.42cd5c2
-pkgrel=1
+pkgrel=2
pkgdesc="Edit your Zsh history, without ever leaving the command line."
arch=('any')
url="https://github.com/marlonrichert/zsh-hist.git"
@@ -24,6 +24,10 @@ package() {
cd zsh-hist
install -vDm 644 ${_pkgname}.plugin.zsh \
-t "${pkgdir}/usr/share/zsh/plugins/${_pkgname}/"
+ for f in {functions/.hist.*,functions/*}; do
+ install -vDm 644 "$f" \
+ -t "${pkgdir}/usr/share/zsh/plugins/${_pkgname}/functions/"
+ done
# docs
install -vDm 644 README.md \
-t "${pkgdir}/usr/share/doc/${_pkgname}/"