Granular.jl

Julia package for granular dynamics simulation
git clone git://src.adamsgaard.dk/Granular.jl
Log | Files | Refs | README | LICENSE

commit 24ac44e780e53040fa737ea47821045f97588acd
parent 903640be44545b524502b363b200ef96871ab143
Author: Anders Damsgaard <andersd@riseup.net>
Date:   Fri, 17 Nov 2017 10:38:30 -0500

add Homebrew/BinDeps installation of ImageMagick which was faulty

Diffstat:
Ddeps/build.jl | 27---------------------------
1 file changed, 0 insertions(+), 27 deletions(-)

diff --git a/deps/build.jl b/deps/build.jl @@ -1,27 +0,0 @@ -#!/usr/bin/env julia -using BinDeps -import Compat -import Compat.Sys - -@BinDeps.setup - -imagemagick = library_dependency("imagemagick", aliases = ["ImageMagick"]) - -provides(AptGet, "imagemagick", imagemagick, os = :Linux) -provides(Yum, "ImageMagick", imagemagick, os = :Linux) -provides(Pacman, "imagemagick", imagemagick, os = :Linux) - -if Compat.Sys.isapple() - if Pkg.installed("Homebrew") === nothing - error("Homebrew julia package not installed, " * - "please run Pkg.add(\"Homebrew\")") - end - using Homebrew - provides(Homebrew.HB, "imagemagick", imagemagick, os = :Darwin) - -elseif Compat.Sys.iswindows() - using WinRPM - provides(WinRPM.RPM, "imagemagick", imagemagick, os = :Windows) -end - -@BinDeps.install Dict(:imagemagick => :imagemagick)