47 lines
1.4 KiB
Ruby
47 lines
1.4 KiB
Ruby
class Dcd < Formula
|
|
desc "Auto-complete program for the D programming language"
|
|
homepage "https://github.com/Hackerpilot/DCD"
|
|
url "https://github.com/Hackerpilot/DCD.git",
|
|
:tag => "v0.8.0",
|
|
:revision => "f8f3024dda05e7f3d1a112adde1f99ec98649e78"
|
|
|
|
head "https://github.com/Hackerpilot/dcd.git", :shallow => false
|
|
|
|
bottle do
|
|
sha256 "44421b44452c5d407a1d0a9b0811eced187a0a580d159cbb1a27348f97d72517" => :sierra
|
|
sha256 "aa5bf3b36f947743dcdf6d3cad4e2973ad2d08746a9eb668a5477b8458090110" => :el_capitan
|
|
sha256 "fe742c126f957f99b1691b2044352f0b134bf0af8a1812c46b256a370f3396e7" => :yosemite
|
|
sha256 "03cd0ece3ba032610457891fb74d1be87417a87e960377e38fc580df7ae8f2c1" => :mavericks
|
|
end
|
|
|
|
devel do
|
|
url "https://github.com/Hackerpilot/DCD.git",
|
|
:tag => "v0.9.0-alpha4",
|
|
:revision => "c324ca9700d7ed9cf2f89c140b286ae9f325b977"
|
|
version "0.9.0-alpha4"
|
|
end
|
|
|
|
depends_on "dmd" => :build
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "bin/dcd-client", "bin/dcd-server"
|
|
end
|
|
|
|
test do
|
|
begin
|
|
# spawn a server, using a non-default port to avoid
|
|
# clashes with pre-existing dcd-server instances
|
|
server = fork do
|
|
exec "#{bin}/dcd-server", "-p9167"
|
|
end
|
|
# Give it generous time to load
|
|
sleep 0.5
|
|
# query the server from a client
|
|
system "#{bin}/dcd-client", "-q", "-p9167"
|
|
ensure
|
|
Process.kill "TERM", server
|
|
Process.wait server
|
|
end
|
|
end
|
|
end
|