homebrew-core/Formula/tofrodos.rb
Adam Vandenberg da3fdbd0cf Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir"
* And "Dir[]" instead of "Dir.glob"
* Also style fixes and nitpicks
2012-02-24 21:35:50 -08:00

16 lines
400 B
Ruby

require 'formula'
class Tofrodos < Formula
homepage 'http://www.thefreecountry.com/tofrodos/index.shtml'
url 'http://tofrodos.sourceforge.net/download/tofrodos-1.7.8.tar.gz'
md5 'aaa044f9817a048e126d9eb7a7535e96'
def install
cd 'src' do
system "make"
bin.install %w[todos fromdos]
man1.install "fromdos.1"
ln_s man1+'fromdos.1', man1+'todos.1'
end
end
end