2013-06-20 22:09:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Dub < Formula
|
|
|
|
homepage 'http://registry.vibed.org/'
|
2013-12-20 22:13:36 +00:00
|
|
|
url 'https://github.com/rejectedsoftware/dub/archive/v0.9.20.tar.gz'
|
|
|
|
sha1 '9fb51e7daf93153d81b2fb7e6e72654c0c19a501'
|
2013-06-20 22:09:37 +00:00
|
|
|
|
2013-06-29 01:31:55 +00:00
|
|
|
head 'https://github.com/rejectedsoftware/dub.git'
|
2013-06-20 22:09:37 +00:00
|
|
|
|
|
|
|
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
|