blob: 22c2042b97cde4875f7042aab5067e71e17ad6b7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require "formula"
class Sec < Formula
  homepage "http://simple-evcorr.sourceforge.net/"
  url "https://downloads.sourceforge.net/project/simple-evcorr/sec/2.7.6/sec-2.7.6.tar.gz"
  sha1 "171fe152563832497f2647b6d1b9aa4b8047ba4e"
  def install
    bin.install "sec"
    man1.install "sec.man" => "sec.1"
  end
  test do
    system "#{bin}/sec", "--version"
  end
end
 |