2016-09-18 16:32:10 -04:00
|
|
|
class DependencyCollector
|
2016-10-15 13:10:35 +01:00
|
|
|
def ant_dep(tags)
|
2016-09-22 08:36:10 -04:00
|
|
|
return if MacOS.version < :mavericks
|
2016-10-15 13:10:35 +01:00
|
|
|
Dependency.new("ant", tags)
|
|
|
|
end
|
|
|
|
|
|
|
|
def xz_dep(tags)
|
2016-10-16 02:03:23 -07:00
|
|
|
return if MacOS.version >= :mavericks
|
2016-10-15 13:10:35 +01:00
|
|
|
Dependency.new("xz", tags)
|
2016-09-18 12:11:30 -04:00
|
|
|
end
|
|
|
|
end
|