diff options
| author | Brian Celenza | 2013-02-21 21:23:41 -0800 |
|---|---|---|
| committer | Jack Nagel | 2013-03-07 17:35:05 -0600 |
| commit | 0f992bc26be5ea640f1941881a313b791e88b6ed (patch) | |
| tree | e6c0d72f9771076361a4a80d15516c172948cbb4 /Library/Formula | |
| parent | 634d3869a2c60894ff780c573a503a224ed2ade2 (diff) | |
| download | homebrew-0f992bc26be5ea640f1941881a313b791e88b6ed.tar.bz2 | |
New formula: epic5 irc client
Closes #18011.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/epic5.rb | 19 |
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 |
