summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorslurpee2024-01-21 14:57:39 -0800
committerslurpee2024-01-21 14:57:39 -0800
commita5ad1f6741fcebaa430693ae2407b7d3f6fb80e5 (patch)
tree590496669161ad65a731c913c2f296edb36991c0 /PKGBUILD
parentd831a28cbfcf3f6e935e1da6f2f5e402dc83188c (diff)
downloadaur-a5ad1f6741fcebaa430693ae2407b7d3f6fb80e5.tar.gz
stop installing system shell completion
op prompts users to turn on the 1P app integration during makepkg while installing completion, which prevents the package from being built. Following official 1P documentation, users should install completion to their own personal dotfile instead of using a system installation; Agilebits's official packages do not ship completion either. Users wishing to install shell completion will need to add a line to their shell's dotfile (.bashrc, .zshrc, etc.).
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD5
1 files changed, 1 insertions, 4 deletions
diff --git a/PKGBUILD b/PKGBUILD
index a3648de5a211..a4c2e59d04f8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=1password-cli
pkgver=2.24.0
-pkgrel=1
+pkgrel=2
pkgdesc="1Password command line tool"
arch=('x86_64' 'i686' 'arm' 'armv6h' 'aarch64')
url="https://app-updates.agilebits.com/product_history/CLI2"
@@ -31,9 +31,6 @@ check() {
package() {
install -Dm755 op "${pkgdir}"/usr/bin/op
-
- install -dm755 "${pkgdir}"/usr/share/zsh/site-functions
- "${pkgdir}"/usr/bin/op completion zsh > "${pkgdir}"/usr/share/zsh/site-functions/_op
}
# vim:set ts=2 sw=2 et: