Skip to content

Commit

Permalink
run_to_check_dependencies.rb: check against imagemagick, ffmpeg retur…
Browse files Browse the repository at this point in the history
…ns 0 nowadays
  • Loading branch information
kig committed Feb 16, 2009
1 parent dc14008 commit 96b96f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_to_check_dependencies.rb
Expand Up @@ -11,9 +11,9 @@ def check(name, args, deb_package, expected = 0)
$missing << [name, deb_package] if $?.exitstatus != expected
end

check("convert", "-help", "graphicsmagick-imagemagick-compat", 1)
check("convert", "-help", "imagemagick", 0)
check("dcraw", "-v", "dcraw", 1)
check("ffmpeg", "-h", "ffmpeg", 1)
check("ffmpeg", "-h", "ffmpeg", 0)
check("firefox", "-h", "firefox", 0)
check("inkscape", "--help", "inkscape", 0)
check("test -n $(echo 'package require snack' | tclsh)", "", "libsnack2", 0)
Expand Down

0 comments on commit 96b96f1

Please sign in to comment.