blob: 0a925b583619c986683b03df14f353291964e0a8 (
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
|
_name='zsh-autosuggestions'
pkgname="${_name}-git"
pkgver=0.2.1.86.cbaf7ce
pkgrel=1
pkgdesc='Fish shell like fast/unobtrusive autosuggestions for zsh'
url='https://github.com/tarruda/zsh-autosuggestions'
arch=('any')
license=('Custom:MIT')
depends=('zsh')
makedepends=('git')
provides=('zsh-autosuggestions')
install="${_name}.install"
source=("${_name}::${url//https/git}")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${_name}"
echo "0.2.1.$(git rev-list --count HEAD).$(git describe --always )"
}
package() {
cd "${srcdir}/${_name}"
install -d "${pkgdir}/usr/share/zsh/plugins/${_name}"
cp -a --no-preserve=ownership * "${pkgdir}/usr/share/zsh/plugins/${_name}"
# license
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
}
|