PKGBUILD: Update dependencies and package zsh completions

This commit is contained in:
Eric Torres 2022-09-28 22:04:22 -07:00
parent b579acdf31
commit 8d050286a9

View File

@ -5,7 +5,8 @@ pkgrel=1
pkgdesc="Various scripts for performing file-related operations such as editing and deleting."
arch=(any)
license=(GPL3)
depends=(bash fd fzf mlocate python python-termcolor)
#depends=(bash fd fzf mlocate python python-termcolor)
depends=(bash fd fzf)
makedepends=(git)
#makedepends=(git python-setuptools python-sphinx)
#checkdepends=(python-hypothesis python-pytest)
@ -32,10 +33,10 @@ package() {
#python setup.py build
#python setup.py install --root="$pkgdir/" --optimize=1
## Install zsh completions
#for completion in zsh; do
# install -m644 "${completion}" "${pkgdir}/usr/share/zsh/site-functions/${plugin##*.}"
#done
# Install zsh completions
for completion in zsh; do
install -m644 "${completion}" "${pkgdir}/usr/share/zsh/site-functions/${plugin##*.}"
done
}
#check() {