homebrew-core/Formula/dub.rb
2016-04-07 14:32:39 +01:00

31 lines
1,023 B
Ruby

class Dub < Formula
desc "Build tool for D projects"
homepage "https://code.dlang.org/about"
url "https://github.com/D-Programming-Language/dub/archive/v0.9.24.tar.gz"
sha256 "88fe9ff507d47cb74af685ad234158426219b7fdd7609de016fc6f5199def866"
head "https://github.com/D-Programming-Language/dub.git", :shallow => false
bottle do
sha256 "bf14b900869d28bc8140731ee81d04d9ee5b456603dea51353863bd76358f49d" => :el_capitan
sha256 "5cdd5f8c6729f3acf955afbd8d383daf196318bf1d2278085a28c28af00d33ce" => :yosemite
sha256 "33db147c048a39cad51569940ff489e015a08f3d17d0c299efcce89c064a8513" => :mavericks
end
devel do
url "https://github.com/D-Programming-Language/dub/archive/v0.9.25-alpha.1.tar.gz"
sha256 "c6823569045b3528238d2d2f372be1a7e4a15b0c31c5584e5d09bc646767131a"
version "0.9.25-alpha.1"
end
depends_on "pkg-config" => :build
depends_on "dmd" => :build
def install
system "./build.sh"
bin.install "bin/dub"
end
test do
system "#{bin}/dub; true"
end
end