aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sec.rb
blob: 1b5d1048fd6dc5b6505b523a568c3538b7361cf2 (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.6.2/sec-2.6.2.tar.gz'
  sha1 'bce0717c59ef1310fcad14ee1f90f4c05f89c4c0'

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

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