27 lines
783 B
Bash
27 lines
783 B
Bash
# Template file for 'shellcheck'
|
|
pkgname=shellcheck
|
|
version=0.10.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=149ef8f90c0ccb8a5a9e64d2b8cdd079ac29f7d2f5a263ba64087093e9135050
|
|
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
|
|
}
|