Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
formulae: various audit fixes
Browse files Browse the repository at this point in the history
audit fixes for: blucat boxes bpm-tools browser burp

Closes #44755.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
  • Loading branch information
apjanke authored and DomT4 committed Oct 9, 2015
1 parent 04a43c5 commit b9386e9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Library/Formula/blucat.rb
Expand Up @@ -2,8 +2,8 @@ class Blucat < Formula
desc "netcat for Bluetooth"
homepage "http://blucat.sourceforge.net/blucat/"
url "http://blucat.sourceforge.net/blucat/wp-content/uploads/blucat-aa3e02.zip"
sha256 "6dcd6bf538a06c2f29d21a9e94d859d91667a7014244462bffca9767bba5307d"
version "0.9"
sha256 "6dcd6bf538a06c2f29d21a9e94d859d91667a7014244462bffca9767bba5307d"

depends_on "ant" => :build
depends_on :java => "1.6"
Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/boxes.rb
Expand Up @@ -2,8 +2,8 @@ class Boxes < Formula
desc "Draw boxes around text"
homepage "http://boxes.thomasjensen.com/"
url "https://github.com/ascii-boxes/boxes/archive/v1.1.2.tar.gz"
head "https://github.com/ascii-boxes/boxes.git"
sha256 "4d5e536be91b476ee48640bef9122f3114b16fe2da9b9906947308b94682c5fe"
head "https://github.com/ascii-boxes/boxes.git"

bottle do
sha1 "fc7adbf52e65497a6203df64bd46c5187b6202ca" => :yosemite
Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/bpm-tools.rb
@@ -1,9 +1,9 @@
class BpmTools < Formula
desc "Detect tempo of audio files using beats-per-minute (BPM)"
homepage "http://www.pogo.org.uk/~mark/bpm-tools/"
head "http://www.pogo.org.uk/~mark/bpm-tools.git"
url "http://www.pogo.org.uk/~mark/bpm-tools/releases/bpm-tools-0.3.tar.gz"
sha256 "37efe81ef594e9df17763e0a6fc29617769df12dfab6358f5e910d88f4723b94"
head "http://www.pogo.org.uk/~mark/bpm-tools.git"

option "with-bpm-graph", "Install plot generation script"
option "with-bpm-tag", "Install audio file tagging script"
Expand Down
6 changes: 3 additions & 3 deletions Library/Formula/browser.rb
@@ -1,11 +1,11 @@
class Browser < Formula
url "https://gist.github.com/defunkt/318247/raw/7720fc969d58a9bfdc74d71deaa15c1eb7582fc1/browser",
:using => :nounzip
desc "Pipe HTML to a browser"
homepage "https://gist.github.com/318247/"
sha256 "273343d6cf9ed543ccea47b85a2ad2ef2afe7b7a2b956f2e7a24ce0175326dcc"
url "https://gist.github.com/defunkt/318247/raw/7720fc969d58a9bfdc74d71deaa15c1eb7582fc1/browser",
:using => :nounzip
# This the gist revision number
version "7"
sha256 "273343d6cf9ed543ccea47b85a2ad2ef2afe7b7a2b956f2e7a24ce0175326dcc"

def install
bin.install "browser"
Expand Down
14 changes: 6 additions & 8 deletions Library/Formula/burp.rb
@@ -1,5 +1,3 @@
require "formula"

class Burp < Formula
desc "Network backup and restore"
homepage "http://burp.grke.org/"
Expand Down Expand Up @@ -29,6 +27,12 @@ def install
system "make", "install"
end

def caveats; <<-EOS.undent
Before installing the launchd entry you should configure your burp client in
#{etc}/burp/burp.conf
EOS
end

test do
system "#{bin}/burp", "-v"
end
Expand Down Expand Up @@ -60,12 +64,6 @@ def plist; <<-EOS.undent
</plist>
EOS
end

def caveats; <<-EOS.undent
Before installing the launchd entry you should configure your burp client in
#{etc}/burp/burp.conf
EOS
end
end

__END__
Expand Down

0 comments on commit b9386e9

Please sign in to comment.