summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoralive4ever2016-06-04 21:45:00 +0700
committeralive4ever2016-06-04 21:48:55 +0700
commit8a9ac3627c1849ddbb1eacaf1fe87a4ee705c4ce (patch)
treea09e690ae0eadadfdf942e11468af7c18bf5ac3a
parent647bf5291b337ae2f9b60620c54d1badba8db1b5 (diff)
downloadaur-8a9ac3627c1849ddbb1eacaf1fe87a4ee705c4ce.tar.gz
New upstream release
Previously, there are two files: tmux1.8 and tmux. It's now just one file for the completion, just tmux.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a54d7485ad7c..047ed9735add 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = tmux-bash-completion
pkgdesc = Bash completion for tmux
- pkgver = r6.10eb94a
+ pkgver = r7.e0f7021
pkgrel = 1
url = https://github.com/imomaliev/tmux-bash-completion
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index 99ffef1c80dc..b6c3425af2d2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=tmux-bash-completion
pkgdesc="Bash completion for tmux"
-pkgver=r6.10eb94a
+pkgver=r7.e0f7021
pkgrel=1
arch=("any")
url="https://github.com/imomaliev/tmux-bash-completion"
@@ -19,7 +19,7 @@ pkgver() {
package() {
cd "$pkgname/completions"
- for file in tmux tmux1.8; do
+ for file in $(ls); do
install -Dm644 $file "$pkgdir/usr/share/bash-completion/completions/$file"
done
}