summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorquest2021-03-07 23:51:55 -1000
committerquest2021-03-07 23:51:55 -1000
commit07ca10efce718ae4ece13b71a2c1e5a17328180c (patch)
treeac473f5e8931a605679d6169fa992890097c77ab
parent67dab746967f728a63d37a5f890a3a0500756b3b (diff)
downloadaur-07ca10efce718ae4ece13b71a2c1e5a17328180c.tar.gz
Add fish completions and README.md
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 99a2a7871a24..e446279f7915 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = s
pkgdesc = Web search from the terminal. Supports over 50 providers including google, github, and stackoverflow.
pkgver = 0.5.15
- pkgrel = 1
+ pkgrel = 2
url = http://github.com/zquestz/s
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index b1ac01f6de50..14a4ec67e014 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=s
pkgver=0.5.15
-pkgrel=1
+pkgrel=2
pkgdesc="Web search from the terminal. Supports over 50 providers including google, github, and stackoverflow."
arch=('i686' 'x86_64')
url="http://github.com/zquestz/s"
@@ -31,6 +31,10 @@ package() {
"${pkgdir}/usr/bin/${pkgname}"
install -Dm 644 "LICENSE" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+ install -Dm644 "README.md" \
+ "${pkgdir}/usr/share/doc/${pkgname}/README.md"
install -Dm 644 "autocomplete/s-completion.bash" \
"${pkgdir}/usr/share/bash-completion/completions/s"
+ install -Dm644 "autocomplete/s.fish" \
+ "${pkgdir}/usr/share/fish/vendor-completions.d/s.fish"
}