2010-02-07 18:41:05 +00:00
|
|
|
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
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2010-02-07 18:41:05 +00:00
|
|
|
def install
|
|
|
|
system "#{ENV.cxx} #{ENV['CXXFLAGS']} -o flip flip.cpp && strip flip"
|
|
|
|
bin.install "flip"
|
|
|
|
end
|
|
|
|
end
|