homebrew-core/Formula/dub.rb

22 lines
444 B
Ruby

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