2014-11-05 20:54:53 +00:00
|
|
|
class Blucat < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "netcat for Bluetooth"
|
2014-11-05 20:54:53 +00:00
|
|
|
homepage "http://blucat.sourceforge.net/blucat/"
|
|
|
|
url "http://blucat.sourceforge.net/blucat/wp-content/uploads/blucat-aa3e02.zip"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "6dcd6bf538a06c2f29d21a9e94d859d91667a7014244462bffca9767bba5307d"
|
2014-11-17 00:08:16 +00:00
|
|
|
version "0.9"
|
|
|
|
|
2014-11-05 20:54:53 +00:00
|
|
|
depends_on "ant" => :build
|
2014-11-17 00:08:16 +00:00
|
|
|
depends_on :java => "1.6"
|
2014-11-05 20:54:53 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "ant"
|
|
|
|
libexec.install "blucat"
|
|
|
|
libexec.install "lib"
|
|
|
|
libexec.install "build"
|
|
|
|
bin.write_exec_script libexec/"blucat"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/blucat", "doctor"
|
|
|
|
end
|
|
|
|
end
|