diff options
Diffstat (limited to 'Library')
| -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 |
