diff options
| author | Mark Simpson | 2013-12-02 23:26:24 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2013-12-12 20:18:21 -0800 |
| commit | f30d4b1bbf0dd598a55e613e6bf0899cb564d099 (patch) | |
| tree | 41a93a7cba98ec181db6c4a211aef90bb23cc662 /Library/Formula | |
| parent | 5247784d3d98411019968305c28f8e2a1cf9007f (diff) | |
| download | homebrew-f30d4b1bbf0dd598a55e613e6bf0899cb564d099.tar.bz2 | |
compface 1.5.2
Closes #24892.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/compface.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/compface.rb b/Library/Formula/compface.rb new file mode 100644 index 000000000..8b1caf71f --- /dev/null +++ b/Library/Formula/compface.rb @@ -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 |
