pkg:setup geoip_data = Pathname.new "#{var}/GeoIP" geoip_data.mkpath legacy_data = Pathname.new "#{HOMEBREW_PREFIX}/share/GeoIP" cp Dir["#{legacy_data}/*"], geoip_data if legacy_data.exist? full = Pathname.new "#{geoip_data}/GeoIP.dat" ln_s "GeoLiteCountry.dat", full unless full.exist? || full.symlink? full = Pathname.new "#{geoip_data}/GeoIPCity.dat" ln_s "GeoLiteCity.dat", full unless full.exist? || full.symlink?