homebrew-core/Formula/dfmt.rb
John Colvin d1ffe3d2ee dfmt 0.5.0-beta.5 (devel)
Closes #9964.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-02-15 13:01:12 +01:00

52 lines
1.4 KiB
Ruby

class Dfmt < Formula
desc "Formatter for D source code"
homepage "https://github.com/Hackerpilot/dfmt"
url "https://github.com/Hackerpilot/dfmt.git",
:tag => "v0.4.5",
:revision => "4fe021df9771d83c325c879012842402a28ca5c7"
head "https://github.com/Hackerpilot/dfmt.git", :shallow => false
bottle do
sha256 "94174f2b10198e8a58f548d0f55d67bf9660c07eee15ef7c89a5a874ad107649" => :sierra
sha256 "ebbad70fca15ca4dfe2ed7f2b790b6994e34ff460d74dc44da78c8fe2a7235d4" => :el_capitan
sha256 "b8de4e3f4f490c157deecfaa36db786de0ad3b040d7172a88e176d6bfb377c06" => :yosemite
sha256 "cf0880574305df3859312cb927aa6a72d1041694677eb5305e64152416c34a8a" => :mavericks
end
devel do
url "https://github.com/Hackerpilot/dfmt.git",
:tag => "v0.5.0-beta.5",
:revision => "9fb13d0cafb3a9f0252e7e45277c37c28889731c"
version "0.5.0-beta5"
end
depends_on "dmd" => :build
def install
if build.stable?
rmtree "libdparse/experimental_allocator"
end
system "make"
bin.install "bin/dfmt"
end
test do
(testpath/"test.d").write <<-EOS.undent
import std.stdio; void main() { writeln("Hello, world without explicit compilations!"); }
EOS
expected = <<-EOS.undent
import std.stdio;
void main()
{
writeln("Hello, world without explicit compilations!");
}
EOS
system "#{bin}/dfmt", "-i", "test.d"
assert_equal expected, (testpath/"test.d").read
end
end