blob: f9b9998717858765789b94a2222c18b14ac8ad7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
require 'formula'
class Epic5 < Formula
  homepage 'http://www.epicsol.org/'
  url 'http://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/epic5-1.1.6.tar.gz'
  sha1 '5b7605a28d184338357abd655e157eed5ad699d7'
  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make install"
  end
  test do
    system "#{bin}/epic5", "-v"
  end
end
  |