adds apt-get install of libportaudio19-dev to build.jl

This commit is contained in:
Spencer Russell 2013-12-14 00:44:04 -05:00
parent 47a587bc20
commit 0aeeb93cf8

11
deps/build.jl vendored
View file

@ -1,7 +1,18 @@
using BinDeps
@BinDeps.setup
ENV["JULIA_ROOT"] = abspath(JULIA_HOME, "../../")
libportaudio = library_dependency("libportaudio")
# TODO: add other providers with correct names
provides(AptGet,
{"portaudio19-dev" => libportaudio}
)
@BinDeps.install [:libportaudio => :libportaudio]
cd(joinpath(Pkg.dir(), "PortAudio", "deps", "src") )
run(`make`)
if (!ispath("../usr"))