diff options
| author | Tuk Bredsdorff | 2010-02-07 19:41:05 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-02-08 14:23:01 -0800 |
| commit | b87f4a5e0f1e49d23415fd43a6a57dc012650cea (patch) | |
| tree | 36befd866d9bda6b25a7ff7ca3df485b282b5969 /Library/Formula/flip.rb | |
| parent | 78f17f2d9f7837a202af05450947f66d436f2f71 (diff) | |
| download | homebrew-b87f4a5e0f1e49d23415fd43a6a57dc012650cea.tar.bz2 | |
Flip 2005.8.21
Newline conversion between Unix, Macintosh and MS-DOS ASCII files.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/flip.rb')
| -rw-r--r-- | Library/Formula/flip.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/flip.rb b/Library/Formula/flip.rb new file mode 100644 index 000000000..a8e5bd793 --- /dev/null +++ b/Library/Formula/flip.rb @@ -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 |
