aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlex Dunn2015-04-21 11:33:23 -0700
committerMike McQuaid2015-04-22 20:53:27 +0100
commitc5665719f75e90cc174b95fc5c7cd569397d97fb (patch)
treea110cc734609e2fe2d300f893edcf9e8365a0bb7 /Library
parent81eeea17c1c036ea8c66f66546c8dde58deb553f (diff)
downloadhomebrew-c5665719f75e90cc174b95fc5c7cd569397d97fb.tar.bz2
epic5 1.1.10
Closes #38907. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/epic5.rb22
1 files changed, 14 insertions, 8 deletions
diff --git a/Library/Formula/epic5.rb b/Library/Formula/epic5.rb
index f9b999871..9357957c6 100644
--- a/Library/Formula/epic5.rb
+++ b/Library/Formula/epic5.rb
@@ -1,19 +1,25 @@
-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'
+ homepage "http://www.epicsol.org/"
+ url "http://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/epic5-1.1.10.tar.bz2"
+ mirror "https://mirrors.kernel.org/debian/pool/main/e/epic5/epic5_1.1.10.orig.tar.bz2"
+ sha256 "a4f19214e8eb9a7aceaed62d924d96d8c9359b186ff230c01daff398dd62cdb5"
+
+ depends_on "openssl"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
- "--mandir=#{man}"
- system "make install"
+ "--mandir=#{man}",
+ "--with-ipv6"
+ system "make", "install"
end
test do
- system "#{bin}/epic5", "-v"
+ connection = fork do
+ system bin/"epic5", "irc.freenode.net"
+ end
+ sleep 5
+ Process.kill("TERM", connection)
end
end