From 84c5c3e5c301382ede5b1f04c7440ee9055589af Mon Sep 17 00:00:00 2001 From: Max Howell Date: Thu, 21 May 2009 00:04:43 +0100 Subject: The core tree, and some formulae --- Formula/dmd.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Formula/dmd.rb (limited to 'Formula/dmd.rb') diff --git a/Formula/dmd.rb b/Formula/dmd.rb new file mode 100644 index 000000000..0c0c7f6d7 --- /dev/null +++ b/Formula/dmd.rb @@ -0,0 +1,23 @@ +$:.unshift "#{File.dirname __FILE__}/../Cellar/homebrew" #rubysucks +require 'brewkit' + +homepage='http://www.digitalmars.com/d/' +url='http://ftp.digitalmars.com/dmd.1.043.zip' +md5='6c83b7296cb84090a9ebc11ab0fb94a2' + +Formula.new(url, md5).brew do |prefix| + prefix.mkpath + FileUtils.cp_r 'osx/bin', prefix + FileUtils.cp_r 'osx/lib', prefix + FileUtils.cp_r 'man', prefix + FileUtils.cp_r 'man', prefix + + share=prefix+'share'+'doc'+'d' + html=share+'html' + samples=share+'examples' #examples is the more typical directory name + html.mkpath + samples.mkpath + + FileUtils.cp_r Dir['html/d/*'], html unless ARGV.include? '--no-html' + FileUtils.cp_r Dir['samples/d/*'], samples unless ARGV.include? '--no-samples' +end \ No newline at end of file -- cgit v1.2.3