epic5 1.1.10
Closes Homebrew/homebrew#38907. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
7f5deab6f9
commit
8cf96539f6
1 changed files with 14 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue