2014-12-01 00:03:11 +00:00
|
|
|
class Odo < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Atomic odometer for the command-line"
|
2014-12-01 00:03:11 +00:00
|
|
|
homepage "https://github.com/atomicobject/odo"
|
2014-12-09 01:58:05 +00:00
|
|
|
url "https://github.com/atomicobject/odo/archive/v0.2.2.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "52133a6b92510d27dfe80c7e9f333b90af43d12f7ea0cf00718aee8a85824df5"
|
2014-12-01 00:03:11 +00:00
|
|
|
|
2014-12-03 19:08:04 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2015-11-19 15:45:31 +00:00
|
|
|
sha256 "066649031770814fe0991dc595f123a145f5c786e5efdc6142c4be7b11eb86be" => :yosemite
|
|
|
|
sha256 "eda3760bca97cc11d11dadc2aabcbb76fef5c47022900e5c628eda1f46cf4adc" => :mavericks
|
|
|
|
sha256 "218018e5ffcf9ce61836429440d28d2b0ca690f66a0491c9d42d9c7482459447" => :mountain_lion
|
2014-12-03 19:08:04 +00:00
|
|
|
end
|
|
|
|
|
2014-12-01 00:03:11 +00:00
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
man1.mkpath
|
|
|
|
bin.mkpath
|
|
|
|
system "make", "test"
|
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "odo", "testlog"
|
|
|
|
end
|
|
|
|
end
|