Sha256: e8547b592e03e11140c8db7767e04a5871e32ecae05694769ca0982847c196a3
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
require 'rubygems' require 'os' success = true ENV['PATH'] = '/opt/rdp_project_local/bin/:' + ENV['PATH'] # macports' bin in first module CheckInstalledMac # should output an error message... def self.check_for_installed name if name == 'mencoder' output = `mencoder --fail 2>&1` if output =~ /mencoder/i # success, it is installed return true else # fall through end end # check for the others generically command = {"gocr" => "gocr --help", "convert" => "convert --help", "ffmpeg" => "ffmpeg -version", "mplayer" => "mplayer"}[name] raise 'unknown ' + name unless command # sanity check unless system("/opt/rdp_project_local/bin/#{command} 1>/dev/null 2>&1") name = 'ImageMagick' if name == 'convert' # special case... puts 'lacking dependency! Please install ' + name + ' by installing the contrib pkg from the website' false else true end end end if $0 == __FILE__ for name in ['gocr', 'convert', 'mplayer', 'ffmpeg'] do if CheckInstalledMac.check_for_installed name puts 'has dep:' + name end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sensible-cinema-0.35.3 | lib/check_installed_mac.rb |