homebrew-core/Formula/cake.rb
2016-10-12 15:47:21 +01:00

36 lines
900 B
Ruby

class Cake < Formula
desc "Cross platform build automation system with a C# DSL."
homepage "http://cakebuild.net/"
url "https://github.com/cake-build/cake/releases/download/v0.16.2/Cake-bin-net45-v0.16.2.zip"
sha256 "68a92a999019fb15c67fa7f5411d38f4a13ad1d63055f4e47ca302c8d2504bee"
bottle :unneeded
depends_on "mono" => :recommended
def install
libexec.install Dir["*.dll"]
libexec.install Dir["*.exe"]
libexec.install Dir["*.xml"]
bin.mkpath
(bin/"cake").write <<-EOS.undent
#!/bin/bash
mono #{libexec}/Cake.exe "$@"
EOS
end
test do
(testpath/"build.cake").write <<-EOS.undent
var target = Argument ("target", "info");
Task("info").Does(() =>
{
Information ("Hello Homebrew");
});
RunTarget ("info");
EOS
assert_match "Hello Homebrew\n", shell_output("#{bin}/cake build.cake")
end
end