blob: a35696a37f0152521e073187e2973e3cf35b99fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Antonin Godard <antonin dot godard at pm dot me>
pkgname=zsh-bitbake
pkgver=1.5.2
pkgrel=1
pkgdesc="Bitbake completion for zsh"
arch=("any")
url="https://github.com/antznin/zsh-bitbake"
license=("MIT")
depends=("zsh")
source=("https://github.com/antznin/zsh-bitbake/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=("fca4e43459fbdde624c4f69c37c4a65eb06374e4010dba431246bf67f1e48f38")
package() {
cd "$srcdir/$pkgname-$pkgver/"
install -Dm644 zsh-bitbake.plugin.zsh "${pkgdir}/usr/share/zsh/plugins/$pkgname/zsh-bitbake.plugin.zsh"
install -Dm644 _bitbake "${pkgdir}/usr/share/zsh/plugins/$pkgname/_bitbake"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|