diff options
| author | Guo Xiao | 2014-11-26 13:33:46 +0800 |
|---|---|---|
| committer | Mike McQuaid | 2014-11-26 12:08:31 +0000 |
| commit | 704d113c360ea32c0f834d8b40bd58e5c73bc72f (patch) | |
| tree | cc9be54c3878c1704127d5e0949055a5f9eef496 /Library/Formula/synscan.rb | |
| parent | ffcfa91e4cb441c20f1bf14fd1395c1c53ade952 (diff) | |
| download | homebrew-704d113c360ea32c0f834d8b40bd58e5c73bc72f.tar.bz2 | |
synscan 5.02 (new formula)
Closes #34460.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/synscan.rb')
| -rw-r--r-- | Library/Formula/synscan.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/synscan.rb b/Library/Formula/synscan.rb new file mode 100644 index 000000000..69a34831e --- /dev/null +++ b/Library/Formula/synscan.rb @@ -0,0 +1,17 @@ +require "formula" + +class Synscan < Formula + homepage "http://www.digit-labs.org/files/tools/synscan/" + url "http://www.digit-labs.org/files/tools/synscan/releases/synscan-5.02.tar.gz" + sha1 "fd2461a9520204682228f942cce075782e0fc21c" + + def install + system "./configure", "--prefix=#{prefix}" + system "make", "macos" + system "make", "install" + end + + test do + system "#{bin}/synscan", "-V" + end +end |
