diff options
| author | Mike Naberezny | 2013-10-14 14:32:24 -0700 | 
|---|---|---|
| committer | Misty De Meo | 2013-10-14 14:54:37 -0700 | 
| commit | 0e171305a8603ae2671c701701e2ae371f86fd98 (patch) | |
| tree | 87bc6aa6670f26030a7714d414aca47eb91bdcb7 /Library/Formula/z80dasm.rb | |
| parent | c070be6e1ff245bd4f4f93510e239586ae7c1660 (diff) | |
| download | homebrew-0e171305a8603ae2671c701701e2ae371f86fd98.tar.bz2 | |
z80dasm 1.1.3
Closes #23274.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Formula/z80dasm.rb')
| -rw-r--r-- | Library/Formula/z80dasm.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/z80dasm.rb b/Library/Formula/z80dasm.rb new file mode 100644 index 000000000..e19d15cb4 --- /dev/null +++ b/Library/Formula/z80dasm.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Z80dasm < Formula +  homepage 'http://www.tablix.org/~avian/blog/articles/z80dasm/' +  url 'http://www.tablix.org/~avian/z80dasm/z80dasm-1.1.3.tar.gz' +  sha1 'da1e2525bc0db1b86e28f65ba510196998448ed1' + +  def install +    system "./configure", "--prefix=#{prefix}" + +    system "make", "install" +  end +end  | 
