aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike Naberezny2013-10-14 18:35:29 -0700
committerAdam Vandenberg2013-10-16 06:14:24 -0700
commitee46f3c15a3690730790127f027de0f464532a4e (patch)
treea2a9888201aba243772828f07ff3a52d8451a273 /Library
parent4ab01aa068f694fc5541949daad0eba76b8820c4 (diff)
downloadhomebrew-ee46f3c15a3690730790127f027de0f464532a4e.tar.bz2
z80asm 1.8
Closes #23276. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/z80asm.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/z80asm.rb b/Library/Formula/z80asm.rb
new file mode 100644
index 000000000..12d63c843
--- /dev/null
+++ b/Library/Formula/z80asm.rb
@@ -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