I have a problem that i do not have tar on my windows machine, and for that reason Pkg.build("GR") fails. I tried fixing it using 7zip as that was present in my julia bin folder by replacing
run(`tar xzf downloads/$tarball`)
with
run(pipeline(`7z x -so downloads/$tarball`,`7z x -aoa -si -ttar -o"."`))
Any tips are welcome.