require 'formula' class Stk < Formula homepage 'https://ccrma.stanford.edu/software/stk/' url 'http://ccrma.stanford.edu/software/stk/release/stk-4.5.0.tar.gz' sha1 '1e7f586526f749dea9bd9cd9744ee25f334df25a' bottle do sha1 "5b3fd9c00dd5e1737c201587c576dc48b70c423d" => :mavericks sha1 "0e37ae81c6f8418910861abf1bb2b7ca4062881a" => :mountain_lion sha1 "ee7b0faa69eb96fad8636ecd4355729779ee9b84" => :lion end option "enable-debug", "Compile with debug flags and modified CFLAGS for easier debugging" fails_with :clang do build 421 cause 'due to configure file this application will not properly compile with clang' end def install if build.include? "enable-debug" inreplace 'configure', 'CFLAGS="-g -O2"', 'CFLAGS="-g -O0"' inreplace 'configure', 'CXXFLAGS="-g -O2"', 'CXXFLAGS="-g -O0"' inreplace 'configure', 'CPPFLAGS="$CPPFLAGS $cppflag"',' CPPFLAGS="$CPPFLAGS $cppflag -g -O0"' debug_status = "--enable-debug" else debug_status = "--disable-debug" end system "./configure", "--prefix=#{prefix}", debug_status, "--disable-dependency-tracking" system "make" lib.install 'src/libstk.a' bin.install 'bin/treesed' (include/'stk').install Dir['include/*'] doc.install Dir['doc/*'] (share/'stk').install 'src', 'projects', 'rawwaves' end def caveats; <<-EOS.undent The header files have been put in a standard search path, it is possible to use an include statement in programs as follows: #include \"stk/FileLoop.h\" #include \"stk/FileWvOut.h\" src/ projects/ and rawwaves/ have all been copied to /usr/local/share/stk EOS end end