52 lines
1.7 KiB
Ruby
52 lines
1.7 KiB
Ruby
class Dfmt < Formula
|
|
desc "Formatter for D source code"
|
|
homepage "https://github.com/dlang-community/dfmt"
|
|
url "https://github.com/dlang-community/dfmt.git",
|
|
tag: "v0.14.2",
|
|
revision: "6a24f0dc7c490f4cb06cdc9d21b841bee84615f4"
|
|
license "BSL-1.0"
|
|
head "https://github.com/dlang-community/dfmt.git", branch: "v0.x.x"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "2aeb82c327f80c2308b8dfa2572a746853a04bc39b0d04afda767eb01c2a83e7"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "366d877bb066339d120387fea51f5145354c3c43a8d0c65b43b887722c59f7eb"
|
|
sha256 cellar: :any_skip_relocation, monterey: "b6f7197f2f1580bff0f06ed086ca679c310d87d64ed506ce8deb89fd49a7d514"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "e558a7feb8739e2064851d66769050b26b8bab8bf009356a773cda5a39e924e4"
|
|
sha256 cellar: :any_skip_relocation, catalina: "3b322f9dbfb2062678b18e6e53719204446315e2fc70a788759505cdc663b839"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "852cdd41ee99f72be5b7e22af09e07a5da3457791016a78ec0038f3172c96120"
|
|
end
|
|
|
|
on_macos do
|
|
depends_on "ldc" => :build
|
|
end
|
|
|
|
on_linux do
|
|
depends_on "dmd" => :build
|
|
end
|
|
|
|
def install
|
|
target = OS.mac? ? "ldc" : "dmd"
|
|
system "make", target
|
|
bin.install "bin/dfmt"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.d").write <<~EOS
|
|
import std.stdio; void main() { writeln("Hello, world without explicit compilations!"); }
|
|
EOS
|
|
|
|
expected = <<~EOS
|
|
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
|