95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
15 lines
473 B
Ruby
15 lines
473 B
Ruby
class Tofrodos < Formula
|
|
desc "Converts DOS <-> UNIX text files, alias tofromdos"
|
|
homepage "http://www.thefreecountry.com/tofrodos/"
|
|
url "http://tofrodos.sourceforge.net/download/tofrodos-1.7.13.tar.gz"
|
|
sha256 "3457f6f3e47dd8c6704049cef81cb0c5a35cc32df9fe800b5fbb470804f0885f"
|
|
|
|
def install
|
|
cd "src" do
|
|
system "make"
|
|
bin.install %w[todos fromdos]
|
|
man1.install "fromdos.1"
|
|
man1.install_symlink "fromdos.1" => "todos.1"
|
|
end
|
|
end
|
|
end
|