2014-12-25 22:43:29 +00:00
|
|
|
require "requirement"
|
|
|
|
|
|
|
|
class AprDependency < Requirement
|
|
|
|
fatal true
|
2015-02-02 00:39:04 -05:00
|
|
|
default_formula "apr-util"
|
2014-12-25 22:43:29 +00:00
|
|
|
|
2015-02-02 00:39:04 -05:00
|
|
|
satisfy { MacOS::CLT.installed? }
|
2014-12-25 22:43:29 +00:00
|
|
|
|
|
|
|
env do
|
|
|
|
unless MacOS::CLT.installed?
|
2015-02-02 00:39:04 -05:00
|
|
|
ENV.prepend_path "PATH", Formula["apr-util"].opt_bin
|
|
|
|
ENV.prepend_path "PATH", Formula["apr"].opt_bin
|
|
|
|
ENV.prepend_path "PKG_CONFIG_PATH", "#{Formula["apr"].opt_libexec}/lib/pkgconfig"
|
|
|
|
ENV.prepend_path "PKG_CONFIG_PATH", "#{Formula["apr-util"].opt_libexec}/lib/pkgconfig"
|
2014-12-25 22:43:29 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|