tadd Homebrew/BinDeps installation of ImageMagick which was faulty - Granular.jl - Julia package for granular dynamics simulation
 (HTM) git clone git://src.adamsgaard.dk/Granular.jl
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 24ac44e780e53040fa737ea47821045f97588acd
 (DIR) parent 903640be44545b524502b363b200ef96871ab143
 (HTM) 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:
         D deps/build.jl                       |      27 ---------------------------
       
       1 file changed, 0 insertions(+), 27 deletions(-)
       ---
 (DIR) diff --git a/deps/build.jl b/deps/build.jl
       t@@ -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)