From bcd911eea948030fb1bfe9c8975e0bb4ac94f958 Mon Sep 17 00:00:00 2001 From: PktSurf Date: Fri, 23 Sep 2022 13:33:07 +0530 Subject: [PATCH] Added shellcheck-bin to base and refreshed base buildlist --- base/.buildlist.base | 1 + base/shellcheck-bin/shellcheck-bin.SMBuild | 26 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100755 base/shellcheck-bin/shellcheck-bin.SMBuild diff --git a/base/.buildlist.base b/base/.buildlist.base index c3fd2a6..e817fae 100644 --- a/base/.buildlist.base +++ b/base/.buildlist.base @@ -46,6 +46,7 @@ flex less bash bash-completion +shellcheck-bin tree attr acl diff --git a/base/shellcheck-bin/shellcheck-bin.SMBuild b/base/shellcheck-bin/shellcheck-bin.SMBuild new file mode 100755 index 0000000..a7bcf2e --- /dev/null +++ b/base/shellcheck-bin/shellcheck-bin.SMBuild @@ -0,0 +1,26 @@ +app=shellcheck-bin +version=0.8.0 +build=1sml +homepage="https://github.com/koalaman/shellcheck" +download="https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.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 +" \ No newline at end of file