Flip 2005.8.21

Newline conversion between Unix, Macintosh and MS-DOS ASCII files.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Tuk Bredsdorff 2010-02-07 19:41:05 +01:00 committed by Adam Vandenberg
parent 350e9009d9
commit 5492eaf857
1 changed files with 13 additions and 0 deletions

13
Formula/flip.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class Flip <Formula
url 'https://ccrma.stanford.edu/~craig/utility/flip/flip.cpp'
homepage 'https://ccrma.stanford.edu/~craig/utility/flip/'
md5 '21dc9256584eceffcfc27e137b3f8bc5'
version '2005.8.21' # It has no version number, I made one up from the last modified date
def install
system "#{ENV.cxx} #{ENV['CXXFLAGS']} -o flip flip.cpp && strip flip"
bin.install "flip"
end
end