summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0ea6d6c3df32adbe0bd27015299ffe1a7e10ebe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer:  Daniel Fichtinger <daniel@ficd.ca>

_pkgname="codebook"
pkgname="${_pkgname}-bin"
pkgver=0.2.9
pkgrel=1
pkgdesc="An unholy spellchecker for code."
arch=('x86_64' 'aarch64')
url="https://github.com/blopker/${_pkgname}"
license=("MIT")
depends=('gcc-libs' 'glibc')
provides=('codebook-lsp')
conflicts=('codebook-lsp')
source=("https://github.com/blopker/${_pkgname}/releases/download/v${pkgver}/codebook-lsp-${CARCH}-unknown-linux-musl.tar.gz")

sha256sums=('SKIP')

package() {
    install -Dm 755 "${srcdir}/codebook-lsp" -t "${pkgdir}/usr/bin/"
}