aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sec.rb
blob: 67de87cad06dd034a709a30a65789bc9f19743da (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 'http://downloads.sourceforge.net/project/simple-evcorr/sec/2.7.3/sec-2.7.3.tar.gz'
  sha1 '926747fb34e45597d24cf6b7a44b9d23be01f7d0'

  def install
    bin.install 'sec'
    man1.install 'sec.man' => 'sec.1'
  end

  test do
    system "#{bin}/sec", "--version"
  end
end