homebrew-core/Formula/dub.rb
Evan Davis 37d928fa23 dub 0.9.22-beta.4 (devel)
Closes Homebrew/homebrew#30742.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-08 11:10:03 -07:00

35 lines
892 B
Ruby

require "formula"
# dub generates version information from git, when building.
# To not break this, we provide a custom download strategy.
class DubHeadDownloadStrategy < GitDownloadStrategy
def stage
@clone.cd {reset}
safe_system "git", "clone", @clone, "."
end
end
class Dub < Formula
homepage "http://code.dlang.org/about"
url "https://github.com/rejectedsoftware/dub/archive/v0.9.21.tar.gz"
sha1 "7752e14f3f5add50b1c7d9138739d72b276e6abe"
head "https://github.com/rejectedsoftware/dub.git", :using => DubHeadDownloadStrategy
devel do
url "https://github.com/rejectedsoftware/dub/archive/v0.9.22-beta.4.tar.gz"
sha1 "9632af2d308e04feb62b258972bba4e29450819e"
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