Skip to content

Commit

Permalink
Merge pull request #128 from alexmorley/patch-1
Browse files Browse the repository at this point in the history
Provide Yum for non-debian builds
  • Loading branch information
stevengj authored Dec 2, 2016
2 parents ad90aa1 + 27211c9 commit 99df47c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ function validate(name, handle)
end
end

zmq = library_dependency("zmq", aliases = ["libzmq", "libzmq.so.3"], validate = validate)
zmq = library_dependency("zmq", aliases = ["libzmq", "libzmq.so.3", "libzmq.so.4", "libzmq.so.5"], validate = validate)

provides(Sources, URI("https://archive.org/download/zeromq_3.2.4/zeromq-3.2.4.tar.gz"), zmq)
provides(BuildProcess, Autotools(libtarget = "src/.libs/libzmq." * BinDeps.shlib_ext), zmq)

provides(AptGet, "libzmq3", zmq, os = :Linux)
provides(Yum, "czmq", zmq, os = :Linux)

if is_windows()
using WinRPM
Expand Down

0 comments on commit 99df47c

Please sign in to comment.