2010-11-30 15:26:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ascii < Formula
|
2011-08-11 16:22:37 +00:00
|
|
|
homepage 'http://www.catb.org/~esr/ascii/'
|
2012-07-01 21:57:40 +00:00
|
|
|
url 'http://www.catb.org/~esr/ascii/ascii-3.11.tar.gz'
|
|
|
|
sha1 '8d033809d14fec814fc9a5818420718043a49e7b'
|
2010-11-30 15:26:19 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
bin.install "ascii"
|
2012-07-01 21:57:40 +00:00
|
|
|
man1.install 'ascii.1'
|
2010-11-30 15:26:19 +00:00
|
|
|
end
|
|
|
|
end
|