blob: 47f9a60f5930f34e77003fb2a342dd1ae4116859 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: HurricanePootis <hurricanepootis@protonmail.com>
# Maintainer: seth <getchoo at tuta dot io>
pkgname=zsh-antidote
_pkgname=antidote
pkgver=1.9.7
pkgrel=1
pkgdesc="the cure to slow zsh plugin management"
arch=(any)
url="https://getantidote.github.io/"
license=('MIT')
depends=('zsh' 'git')
install=zsh-antidote.install
source=(
"$_pkgname-$pkgver.tar.gz::https://github.com/mattmc3/$_pkgname/archive/refs/tags/v$pkgver.tar.gz"
)
sha256sums=('67245a39d9719251e295cbeae7b050c99eccff5b978badd1e4b61e90575a6fac')
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
install -Dm0644 -t "${pkgdir}/usr/share/${pkgname}/" "${_pkgname}.zsh"
cp -r functions/ "${pkgdir}/usr/share/${pkgname}/"
install -Dm0644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
find man/man1/ -type f -name '*.1' -exec \
install -Dm644 -t "${pkgdir}/usr/share/man/man1" {} \;
}
# nvim: set ts=2 sw=2 noet:
|