compface 1.5.2

Closes Homebrew/homebrew#24892.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Mark Simpson 2013-12-02 23:26:24 -05:00 committed by Adam Vandenberg
parent a02d266fe9
commit 6802c19f5e
1 changed files with 21 additions and 0 deletions

21
Formula/compface.rb Normal file
View File

@ -0,0 +1,21 @@
require 'formula'
class Compface < Formula
homepage 'http://freecode.com/projects/compface'
url 'http://ftp.xemacs.org/pub/xemacs/aux/compface-1.5.2.tar.gz'
sha1 '72dad8774b3301a1562bdbd5b3c5536ebf86a03d'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make", "install"
end
test do
system bin/"uncompface"
end
end