aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Fontaine2014-12-31 18:30:03 +0100
committerMike McQuaid2014-12-31 19:41:48 +0000
commit799bad71edc9b96c1610656147188f7bf8c7a3a3 (patch)
treee35b4f97ee23524aead450fdf34e094a5c7d5e8b
parente35a5ca8909099dbac98bd0226cf7a61f3b81415 (diff)
downloadhomebrew-799bad71edc9b96c1610656147188f7bf8c7a3a3.tar.bz2
zxcc: modernize
Closes #35402. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
-rw-r--r--Library/Formula/zxcc.rb12
1 files changed, 5 insertions, 7 deletions
diff --git a/Library/Formula/zxcc.rb b/Library/Formula/zxcc.rb
index b733e5654..e0d473bd9 100644
--- a/Library/Formula/zxcc.rb
+++ b/Library/Formula/zxcc.rb
@@ -1,15 +1,13 @@
-require 'formula'
-
class Zxcc < Formula
- homepage 'http://www.seasip.info/Unix/Zxcc/'
- url 'http://www.seasip.info/Unix/Zxcc/zxcc-0.5.7.tar.gz'
- sha1 'cc088ef24b2a62fc2673a593982dd62c16136f18'
+ homepage "http://www.seasip.info/Unix/Zxcc/"
+ url "http://www.seasip.info/Unix/Zxcc/zxcc-0.5.7.tar.gz"
+ sha1 "cc088ef24b2a62fc2673a593982dd62c16136f18"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
- system "make check"
- system "make install"
+ system "make", "check"
+ system "make", "install"
end
test do