blob: 1dfcab93dc0b8c4c126e5db2a6b0d50b240dbf12 (
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
30
31
32
33
34
35
|
require 'formula'
class Dmd < Formula
homepage 'http://www.digitalmars.com/d/'
url 'http://cloud.github.com/downloads/D-Programming-Language/dmd/dmd.2.060.zip'
sha1 'e39687e90a52b979d1cea64faf745b7825f01f94'
def doc
#use d and not dmd, rationale: meh
prefix+'share/doc/d'
end
def install
# clean it up a little first
rm Dir['src/*.mak']
mv 'license.txt', 'COPYING'
mv 'README.TXT', 'README'
prefix.install 'osx/bin', 'osx/lib', 'src'
man.install 'man/man1'
(prefix+'src/dmd').rmtree # we don't need the dmd sources thanks
man5.install man1+'dmd.conf.5' # oops
(share+'d/examples').install Dir['samples/d/*.d']
# Rewrite the DFLAGS to point to the prefix.
# @adamv: this should not go into bin!
# But I'm too lazy to figure out how to fix right now.
rm bin+'dmd.conf'
(bin+'dmd.conf').write <<-EOS.undent
[Environment]
DFLAGS=-I#{prefix}/src/phobos -I#{prefix}/src/druntime/import
EOS
end
end
|