aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dmd.rb
blob: 55cd6c3b1f546057bca6c275535ced33f39837ce (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
36
require 'formula'

class Dmd <Formula
  @homepage='http://www.digitalmars.com/d/'
  @url='http://ftp.digitalmars.com/dmd.1.060.zip'
  @md5='fd982f9d1d5d836a02ece476c20e5334'

  def doc
    #use d and not dmd, rationale: meh
    prefix+'share'+'doc'+'d'
  end

  def install
    ohai "Installing dmd"

    # clean it up a little first
    Dir['src/*.mak'].each {|f| File.unlink f}
    FileUtils.mv 'license.txt', 'COPYING'
    FileUtils.mv 'README.TXT', 'README'
    FileUtils.mv 'src/phobos/phoboslicense.txt', 'src/phobos/COPYING.phobos'

    prefix.install 'osx/lib'
    prefix.install 'osx/bin'
    prefix.install 'src'
    man.install 'man/man1'

    (prefix+'src'+'dmd').rmtree # we don't need the dmd sources thanks
    (man+'man5').install man1+'dmd.conf.5' # oops
    (prefix+'share'+'d'+'examples').install Dir['samples/d/*.d']

    (prefix+'bin'+'dmd.conf').open('w') do |f|
      f.puts "[Environment]"
      f.puts "DFLAGS=-I#{prefix}/src/phobos -L-L#{prefix}/lib"
    end
  end
end