homebrew-core/Formula/dub.rb
Brett Koonce 9c25d01f8f dub 0.9.16
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-07-16 11:30:29 -05:00

21 lines
444 B
Ruby

require 'formula'
class Dub < Formula
homepage 'http://registry.vibed.org/'
url 'https://github.com/rejectedsoftware/dub/archive/v0.9.16.tar.gz'
sha1 'ed649b5faee87f0cb239b6c6467850c72c1a656b'
head 'https://github.com/rejectedsoftware/dub.git'
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