blob: 103f8d7499bc875e1be57050faa0cb6e6edfd78e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
require 'formula'
class Dub < Formula
homepage 'http://registry.vibed.org/'
url 'https://github.com/rejectedsoftware/dub/archive/v0.9.19.tar.gz'
sha1 'dcf880029190180a1a4a4753237c0eb164941c98'
head 'https://github.com/rejectedsoftware/dub.git'
depends_on 'pkg-config' => :build
depends_on 'dmd' => :build
# patch is in upstream master
def patches
[
"https://github.com/rejectedsoftware/dub/commit/0e91afd52babf96128be43120dfd5f9a38b4d202.patch",
"https://github.com/rejectedsoftware/dub/commit/b08454b6baa5c7e9e2d5a21c943c21cb986fff23.patch",
]
end
def install
system "./build.sh"
bin.install 'bin/dub'
end
test do
system "#{bin}/dub; true"
end
end
|