40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
class Checkbashisms < Formula
|
|
desc "Checks for bashisms in shell scripts"
|
|
homepage "https://launchpad.net/ubuntu/+source/devscripts/"
|
|
url "https://deb.debian.org/debian/pool/main/d/devscripts/devscripts_2.21.2.tar.xz"
|
|
sha256 "c32db3f5b62c30d4ac77724c1ab2eb241eb4b9a1d9ea24bd762eba4d6b07ed32"
|
|
|
|
livecheck do
|
|
url "https://deb.debian.org/debian/pool/main/d/devscripts/"
|
|
regex(/href=.*?devscripts[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "fe74bccfa6862b75ca96868f3dbe610efa11dcb6ba644f801b28baad9a6531e7"
|
|
end
|
|
|
|
def install
|
|
inreplace "scripts/checkbashisms.pl" do |s|
|
|
s.gsub! "###VERSION###", version
|
|
s.gsub! "#!/usr/bin/perl", "#!/usr/bin/perl -T"
|
|
end
|
|
|
|
bin.install "scripts/checkbashisms.pl" => "checkbashisms"
|
|
man1.install "scripts/checkbashisms.1"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.sh").write <<~EOS
|
|
#!/bin/sh
|
|
|
|
if [[ "home == brew" ]]; then
|
|
echo "dog"
|
|
fi
|
|
EOS
|
|
expected = <<~EOS
|
|
(alternative test command ([[ foo ]] should be [ foo ])):
|
|
EOS
|
|
assert_match expected, shell_output("#{bin}/checkbashisms #{testpath}/test.sh 2>&1", 1)
|
|
end
|
|
end
|