summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authortimvisee2019-08-29 21:30:23 +0000
committertimvisee2019-08-29 21:30:23 +0000
commitcedefa8b5b54523b3fb654ccf1dd4cdcce2675e4 (patch)
treec95f6bf013c8531a37c3e5373153c6c9e681eecf
parent0fe040f584e7096bf1ad7011938877a9b5f63548 (diff)
downloadaur-cedefa8b5b54523b3fb654ccf1dd4cdcce2675e4.tar.gz
Update PKGBUILD for release v0.2.51
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD15
2 files changed, 11 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f73162277d7c..5d2fa74946d8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = ffsend-git
pkgdesc = Easily and securely share files from the command line. A Firefox Send client.
- pkgver = 0.2.43.2545708f
+ pkgver = 0.2.51.e98ddafd
pkgrel = 1
url = https://gitlab.com/timvisee/ffsend
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 3ff8d0eac319..1611b24f8456 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
# - Mirror: https://github.com/timvisee/ffsend/blob/master/pkg/aur/ffsend-git/PKGBUILD
pkgname=ffsend-git
-pkgver=0.2.43.2545708f
+pkgver=0.2.51.e98ddafd
pkgrel=1
pkgdesc="Easily and securely share files from the command line. A Firefox Send client."
url="https://gitlab.com/timvisee/ffsend"
@@ -31,8 +31,13 @@ package() {
# Install Binary
install -Dm755 "./target/release/ffsend" "$pkgdir/usr/bin/ffsend"
- # Install completions
- cd "./contrib/completions"
- install -Dm644 "ffsend.bash" "$pkgver/usr/share/bash-completion/completions/ffsend"
- install -Dm644 "ffsend.fish" "$pkgver/usr/share/fish/vendor_completions.d/ffsend.fish"
+ # Install shell completions and LICENSE file
+ install -Dm644 "contrib/completions/ffsend.bash" \
+ "$pkgdir/etc/bash_completion.d/ffsend"
+ install -Dm644 "contrib/completions/_ffsend" \
+ "$pkgdir/usr/share/zsh/site-functions/_ffsend"
+ install -Dm644 "contrib/completions/ffsend.fish" \
+ "$pkgdir/usr/share/fish/vendor_completions.d/ffsend.fish"
+ install -Dm644 "LICENSE" \
+ "$pkgdir/usr/share/licenses/ffsend/LICENSE"
}