smlinux/base/shellcheck-bin/shellcheck-bin.SMBuild
PktSurf 983adfe29f Added more version-specific URL to download variable in base/shellcheck build file
Undertook code cleanup in bldpkg based on suggestions from shellcheck binary
Shellcheck suggestions aside, changes to bldpkg include:
-> Updated TODO list
-> Added set -e again
-> Replaced single-letter variables in runtime function with more sensible variable names
-> Restored man page compression and linking code from earlier bldpkg commits
-> Fixed code to move pkgconfig files from $pkg/share to $pkg/lib
2022-09-23 14:05:42 +05:30

26 lines
695 B
Text
Executable file

app=shellcheck-bin
version=0.8.0
build=1sml
homepage="https://github.com/koalaman/shellcheck"
download="https://github.com/koalaman/shellcheck/releases/download/v$version/shellcheck-v$version.linux.$arch.tar.xz"
desc="Static Binary Of CLI Shell script analyzer"
requires="musl"
build() {
mkandenterbuilddir
rm -rf shellcheck-bins
tar xf $srcdir/shellcheck-bins.tar.?z*
cd shellcheck-bins
fixbuilddirpermissions
install -Dm 755 shellcheck.$arch $pkg/bin/shellcheck
cp LICENSE.txt $pkgdocs/
mkfinalpkg
}
sha512sums="
8913b4318a6bbce94db8952f84d61e103554ccd67ec25ff2165f6891db6f7572f5331677fdc314d7190a7a6a2ef979ee52e11d588e491e9ea3098f1e0dd565e8 shellcheck-bins.tar.lz
"