homebrew-core/Formula/dasm.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

12 lines
314 B
Ruby

require 'formula'
class Dasm < Formula
homepage 'http://dasm-dillon.sourceforge.net'
url 'http://downloads.sourceforge.net/project/dasm-dillon/dasm-dillon/2.20.11/dasm-2.20.11.tar.gz'
sha1 '6c1f0091e88fff8f814a92304286c1875fd64693'
def install
system "make"
prefix.install 'bin', 'doc'
end
end