2010-08-09 03:07:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tofrodos < Formula
|
2012-10-06 18:52:47 +00:00
|
|
|
homepage 'http://www.thefreecountry.com/tofrodos/'
|
|
|
|
url 'http://tofrodos.sourceforge.net/download/tofrodos-1.7.12a.tar.gz'
|
|
|
|
sha1 'e4b9f3955dd30193e75a5666f7a95854c3397ce0'
|
2010-08-09 03:07:11 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-21 06:04:21 +00:00
|
|
|
cd 'src' do
|
|
|
|
system "make"
|
|
|
|
bin.install %w[todos fromdos]
|
|
|
|
man1.install "fromdos.1"
|
|
|
|
ln_s man1+'fromdos.1', man1+'todos.1'
|
|
|
|
end
|
2010-08-09 03:07:11 +00:00
|
|
|
end
|
|
|
|
end
|