6802c19f5e
Closes Homebrew/homebrew#24892. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
21 lines
560 B
Ruby
21 lines
560 B
Ruby
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
|