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/'
|
2013-01-17 16:05:09 +00:00
|
|
|
url 'http://www.catb.org/~esr/ascii/ascii-3.12.tar.gz'
|
|
|
|
sha1 'aaeeb96a5a39d76a41bddc4504fdb97180beca9b'
|
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
|