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
|
|
|
url 'http://tofrodos.sourceforge.net/download/tofrodos-1.7.8.tar.gz'
|
|
|
|
homepage 'http://www.thefreecountry.com/tofrodos/index.shtml'
|
|
|
|
md5 'aaa044f9817a048e126d9eb7a7535e96'
|
|
|
|
|
|
|
|
def install
|
2010-10-21 14:54:17 +00:00
|
|
|
Dir.chdir 'src'
|
2010-08-09 03:07:11 +00:00
|
|
|
system "make"
|
|
|
|
bin.install %w[todos fromdos]
|
2010-10-21 14:54:17 +00:00
|
|
|
man1.install "fromdos.1"
|
2010-08-09 03:07:11 +00:00
|
|
|
ln_s man1+'fromdos.1', man1+'todos.1'
|
|
|
|
end
|
|
|
|
end
|