27 lines
782 B
Bash
27 lines
782 B
Bash
# Template file for 'shellcheck'
|
|
pkgname=shellcheck
|
|
version=0.9.0
|
|
revision=1
|
|
build_style=haskell-stack
|
|
stackage="lts-19.0"
|
|
hostmakedepends="pandoc"
|
|
short_desc="Static analysis tool for shell scripts"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://www.shellcheck.net/"
|
|
distfiles="https://github.com/koalaman/shellcheck/archive/v${version}.tar.gz"
|
|
checksum=3cec1fec786feee79dacdabf9de784a117b7f82388dbcca97ba56a5c9ff7d148
|
|
nocross=yes
|
|
nopie_files="/usr/bin/shellcheck"
|
|
|
|
pre_configure() {
|
|
pandoc -s -f markdown-smart -t man shellcheck.1.md -o shellcheck.1
|
|
pandoc -s -f markdown-smart -t html5 -o README.html README.md
|
|
}
|
|
|
|
post_install() {
|
|
vdoc README.html
|
|
vman shellcheck.1
|
|
cp -r ${wrksrc}/doc ${PKGDESTDIR}/usr/share/doc/${pkgname}/doc
|
|
}
|