require 'formula' class Mkvtoolnix :optional depends_on 'lzo' => :optional def install # as of v3.3.0, doesn't seem to be BSD compatible here inreplace 'handle_deps', %q!sed -e 's:\\.\\(o\\|gch\\)$:.d:'!, %q!sed -E -e 's:\\.(o|gch)$:.d:'! flac_flag = Formula.factory('flac').installed? ? "--with-flac" : "--without-flac" system "./configure", "--disable-debug", "--prefix=#{prefix}", "--with-boost-regex=boost_regex-mt", # via macports flac_flag, "--disable-gui", "--disable-wxwidgets" system "make" system "make install" end end