7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
13 lines
419 B
Ruby
13 lines
419 B
Ruby
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
|