@@ -50,6 +50,7 @@ if is_windows()
50
50
"""
51
51
init_envs["MAGICK_CONFIGURE_PATH"] = \" $(escape_string (magick_libdir)) \"
52
52
init_envs["MAGICK_CODER_MODULE_PATH"] = \" $(escape_string (joinpath (magick_libdir, " modules" , " coders" ))) \"
53
+ init_envs["MAGICK_FILTER_MODULE_PATH"] = \" $(escape_string (joinpath (magick_libdir, " modules" , " filters" ))) \"
53
54
"""
54
55
55
56
provides (BuildProcess,
@@ -70,11 +71,9 @@ if is_apple()
70
71
homebrew_prefix = Homebrew. prefix ()
71
72
preloads =
72
73
"""
73
- init_envs["MAGICK_CONFIGURE_PATH"] = joinpath("$(homebrew_prefix) ",
74
- "lib", "ImageMagick", "config-Q16")
75
- init_envs["MAGICK_CODER_MODULE_PATH"] = joinpath("$(homebrew_prefix) ",
76
- "lib", "ImageMagick", "modules-Q16", "coders")
77
- init_envs["PATH"] = joinpath("$(homebrew_prefix) ", "bin") * ":" * ENV["PATH"]
74
+ init_envs["MAGICK_CONFIGURE_PATH"] = joinpath("$(homebrew_prefix) ", "lib", "ImageMagick", "config-Q16")
75
+ init_envs["MAGICK_CODER_MODULE_PATH"] = joinpath("$(homebrew_prefix) ", "lib", "ImageMagick", "modules-Q16", "coders")
76
+ init_envs["MAGICK_FILTER_MODULE_PATH"] = joinpath("$(homebrew_prefix) ", "lib", "ImageMagick", "modules-Q16", "filters")
78
77
"""
79
78
provides (Homebrew. HB, " homebrew/core/imagemagick@6" , libwand, os = :Darwin , preload = preloads)
80
79
end
0 commit comments