diff options
| author | Matthew Callis | 2011-04-20 18:58:54 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-09-02 10:11:08 -0700 |
| commit | dfad8f58ac7f0588a9d5f725e6254bf70ac53da0 (patch) | |
| tree | 1198cbad395d75ac974b76ebdc53122c2ea5b5fa /Library/Formula | |
| parent | 08ca563522d0eb4113508e1899f968cdff77ff71 (diff) | |
| download | homebrew-dfad8f58ac7f0588a9d5f725e6254bf70ac53da0.tar.bz2 | |
WLA DX 9.5a
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/wla-dx.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/wla-dx.rb b/Library/Formula/wla-dx.rb new file mode 100644 index 000000000..1bc600543 --- /dev/null +++ b/Library/Formula/wla-dx.rb @@ -0,0 +1,18 @@ +require 'formula' + +class WlaDx < Formula + homepage 'http://www.villehelin.com/wla.html' + url 'http://www.villehelin.com/wla_dx_9.5a.tar.gz' + md5 '5930d9142c7b99026e021234be527a9c' + + head 'https://wladx.svn.sourceforge.net/svnroot/wladx' + + def install + %w{CFLAGS CXXFLAGS CPPFLAGS}.each { |e| ENV.delete(e) } + ENV.append_to_cflags '-c -O3 -ansi -pedantic -Wall' + system "chmod +x unix.sh" + system "chmod +x opcode_table_generator/create_tables.sh" + system "./unix.sh", ENV.make_jobs + bin.install Dir['./binaries/*'] + end +end |
