diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/dasm.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/dasm.rb b/Library/Formula/dasm.rb new file mode 100644 index 000000000..9a8664144 --- /dev/null +++ b/Library/Formula/dasm.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Dasm < Formula + homepage 'http://dasm-dillon.sourceforge.net' + url 'http://sourceforge.net/projects/dasm-dillon/files/dasm-dillon/2.20.11/dasm-2.20.11.tar.gz' + md5 '3e67f7b8ac80419d53cc0aaa9a47ab37' + + def install + system "make" + prefix.install Dir['bin'] + end +end |
