homebrew-core/Formula/compface.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

20 lines
614 B
Ruby

class Compface < Formula
desc "Convert to and from the X-Face format"
homepage "http://freecode.com/projects/compface"
url "http://ftp.xemacs.org/pub/xemacs/aux/compface-1.5.2.tar.gz"
sha256 "a6998245f530217b800f33e01656be8d1f0445632295afa100e5c1611e4f6825"
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