Depend on pyalpm

This commit is contained in:
Eric Torres 2023-01-06 21:54:09 -08:00
parent c49800f49f
commit 162e7c00a6

View File

@ -6,7 +6,7 @@ pkgdesc="A set of helper scripts for handling Arch Linux packages"
arch=('any') arch=('any')
license=('MIT') license=('MIT')
groups=(pacman-helpers) groups=(pacman-helpers)
depends=(gist mlocate pacman python) depends=(gist mlocate pacman python pyalpm)
makedepends=(git python-setuptools) makedepends=(git python-setuptools)
optdepends=('fzf: for the fqo script' optdepends=('fzf: for the fqo script'
'mlocate: for the fqo script') 'mlocate: for the fqo script')
@ -56,4 +56,7 @@ package() {
install -m644 "${completion}"\ install -m644 "${completion}"\
"${pkgdir}/usr/share/zsh/site-functions/${completion##*/*}" "${pkgdir}/usr/share/zsh/site-functions/${completion##*/*}"
done done
# install license
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
} }