blob: 166f246690f46fb7f5fb69c6d21b3d17833401bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
require 'formula'
class Checkbashisms < Formula
homepage 'http://manpages.ubuntu.com/manpages/natty/man1/checkbashisms.1.html'
# Get upgrades at https://launchpad.net/ubuntu/+source/devscripts/
url 'https://launchpad.net/ubuntu/+archive/primary/+files/devscripts_2.13.4.tar.xz'
sha1 '94e7225c2f9f9062cea35c8010e984ae98834c28'
bottle do
cellar :any
sha1 "ba3d65481d041cc28b3f1c2a0887a1c2a08694d0" => :yosemite
sha1 "0a2f8609c179a3096683645b64410dc3388245e6" => :mavericks
sha1 "973505a805eadf37740db75a646e168b8c6545c7" => :mountain_lion
sha1 "81691ff80d98176deefb878972ae419567326d12" => :lion
end
def install
inreplace 'scripts/checkbashisms.pl', '###VERSION###', "#{version}ubuntu1"
bin.install 'scripts/checkbashisms.pl' => 'checkbashisms'
man1.install 'scripts/checkbashisms.1'
end
test do
system "#{bin}/checkbashisms --version | grep #{version}"
end
end
|