2010-08-09 03:07:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tofrodos < Formula
|
2010-08-09 03:07:11 +00:00
|
|
|
homepage 'http://www.thefreecountry.com/tofrodos/index.shtml'
|
2012-07-30 03:44:08 +00:00
|
|
|
url 'http://tofrodos.sourceforge.net/download/tofrodos-1.7.9.tar.gz'
|
|
|
|
sha1 '3b2b0ddec1629e42bb17cf323d7518fd079191ed'
|
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
|