bdf504682d
Closes Homebrew/homebrew#30318. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
26 lines
695 B
Ruby
26 lines
695 B
Ruby
require 'formula'
|
|
|
|
class Ddate < Formula
|
|
homepage "https://github.com/bo0ts/ddate"
|
|
url "https://github.com/bo0ts/ddate/archive/v0.2.2.tar.gz"
|
|
sha1 "fafb5867c93d7328a1c5e8a0b9726f98362c0c09"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "af6bacba82ac71f204e915ae669b98cd202e79ad" => :mavericks
|
|
sha1 "8df50f3601d86819e0b491f7508f6267c3252aa0" => :mountain_lion
|
|
sha1 "7c4699766bea102425380bde8914c95e53fa99ff" => :lion
|
|
end
|
|
|
|
def install
|
|
system ENV.cc, "ddate.c", "-o", "ddate"
|
|
bin.install "ddate"
|
|
man1.install "ddate.1"
|
|
end
|
|
|
|
test do
|
|
out = `#{bin}/ddate 20 6 2014`
|
|
assert_equal "Sweetmorn, Confusion 25, 3180 YOLD\n", out
|
|
assert_equal 0, $?.exitstatus
|
|
end
|
|
end
|