Hi,
I get the following error when I try to add package Cairo, Pkg.add("Cairo"), on mac osx, while trying to get the Winston plot package working.
julia> versioninfo()
Julia Version 0.2.0-prerelease+3432
Commit 6374414 2013-08-25 04:44:18 UTC
Platform Info:
System: Darwin (x86_64-apple-darwin12.4.0)
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY)
LAPACK: libopenblas
LIBM: libopenlibm
Pkg.add("Cairo")
INFO: Installing Cairo v0.2.6
INFO: Installing BinDeps v0.2.2
INFO: Installing URIParser v0.0.0
INFO: Running build script for package Cairo
Array((DependencyProvider,Dict{Symbol,Any}),(6,)) [(Homebrew(HomebrewInstall("glib",[],[])),Dict{Symbol,Any}()),(AptGet("libglib2.0-0"),Dict{Symbol,Any}()),(Yum("glib"),Dict{Symbol,Any}()),(RemoteBinaries(URI(
http://julialang.googlecode.com/files/Cairo.tar.gz)),[:os=>:Windows]),(RemoteBinaries(URI(
http://julialang.googlecode.com/files/OSX.tar.gz)),[:os=>:Darwin]),(Autotools(nothing,Dict{Any,Any}()),Dict{Symbol,Any}())]
ERROR: could not start process `unxz -c /Users/fulford/.julia/Cairo/deps/downloads/glib-2.34.3.tar.xz`: no such file or directory (ENOENT)
in test_success at process.jl:422
I have checked and I do have xz installed (using homebrew) and
unxz -c /Users/fulford/.julia/Cairo/deps/downloads/glib-2.34.3.tar.xz
appears to work from the command line, so I am not sure what is wrong?
I have PyCall working now, so I am not too worried, but I thought people might like to know about this before the 0.2 release.
Glenn