aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/epic5.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/epic5.rb b/Library/Formula/epic5.rb
new file mode 100644
index 000000000..78fc079f8
--- /dev/null
+++ b/Library/Formula/epic5.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class Epic5 < Formula
+ homepage 'http://www.epicsol.org/'
+ url 'http://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/epic5-1.1.5.tar.gz'
+ sha1 '7a65bed6971118b0f0931652d6eee5090c75d449'
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
+ system "make install"
+ end
+
+ def test
+ system "#{bin}/epic5", "-v"
+ end
+end