aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/z80dasm.rb
blob: e19d15cb44550ff6443c9c7c8b06919cb987764d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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