z80asm 1.8
Closes Homebrew/homebrew#23276. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
fdd85d4411
commit
f093b91ff0
1 changed files with 18 additions and 0 deletions
18
Formula/z80asm.rb
Normal file
18
Formula/z80asm.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require 'formula'
|
||||
|
||||
class Z80asm < Formula
|
||||
homepage 'http://www.nongnu.org/z80asm/'
|
||||
url 'http://download.savannah.gnu.org/releases/z80asm/z80asm-1.8.tar.gz'
|
||||
sha1 '9d169ac728a9a3b162c0a7ea34da55cf37ada0e1'
|
||||
|
||||
def install
|
||||
system 'make'
|
||||
|
||||
bin.install 'z80asm'
|
||||
man1.install 'z80asm.1'
|
||||
end
|
||||
|
||||
test do
|
||||
system bin/'z80asm', '-V'
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue