BinDeps.jl icon indicating copy to clipboard operation
BinDeps.jl copied to clipboard

Tool for building binary dependencies for Julia modules

Results 101 BinDeps.jl issues
Sort by recently updated
recently updated
newest added

When I run an unpack command: housing_tgz = BinDeps.unpack_cmd(tgz_path, housing_path, ".tgz", ""), the pipeline command at line 122: return pipeline(`$exe7z x $file -y -so`, `$exe7z x -si -y -ttar -o$directory`)...

Related: https://github.com/JuliaPackaging/BinDeps.jl/issues/396 also reported https://github.com/JuliaGraphics/Cairo.jl/issues/271 and https://github.com/JuliaLang/julia/issues/31517 According to the glib upstream https://gitlab.gnome.org/GNOME/pango/issues/363, dlopen followed by dlclose is not supported and it's surprising if it worked before. Should changes be...

Hi guys, I am seeing a crash during the Cairo.jl build process: ``` signal (11): Segmentation fault: 11 in expression starting at no file:0 _platform_strcmp at /usr/lib/system/libsystem_platform.dylib (unknown line) Allocations:...

Currently `BinDeps.debug()` fails due to this

I get the above error with Julia 0.7, 1.0.2 and nightly on Travis CI/Linux. My `build.jl` says ```julia libblas = library_dependency("libblas") liblapack = library_dependency("liblapack") provides(AptGet, "libblas-dev", libblas, os=:Linux) provides(AptGet, "liblapack-dev",...

The readme links to GSL's `build.jl` as an example of BinDeps usage, but GSL has since switched to BinaryProvider.

I'm trying to write a build.jl file that locate the libamd library that ships with Julia. However, the staightforward script ```julia using BinDeps @BinDeps.setup libamd = library_dependency("libamd") @BinDeps.install Dict(:libamd =>...

...after the migration to JuliaPackaging

showed up here: https://github.com/JuliaGraphics/Cairo.jl/issues/231 and https://github.com/JuliaGraphics/Cairo.jl/issues/230