removes some unused dependencies and trying a new APT package name

This commit is contained in:
Spencer Russell 2016-03-20 00:59:36 -04:00
parent d193a9c83d
commit f834773b34
3 changed files with 2 additions and 5 deletions

View file

@ -1,6 +1,5 @@
julia 0.4 julia 0.4
BinDeps BinDeps
Compat
Devectorize Devectorize
@osx Homebrew @osx Homebrew
@windows WinRPM @windows WinRPM

2
deps/build.jl vendored
View file

@ -8,7 +8,7 @@ ENV["JULIA_ROOT"] = abspath(JULIA_HOME, "../../")
libportaudio = library_dependency("libportaudio") libportaudio = library_dependency("libportaudio")
# TODO: add other providers with correct names # TODO: add other providers with correct names
provides(AptGet, "portaudio19-dev", libportaudio) provides(AptGet, "libportaudio2", libportaudio)
provides(Pacman, "portaudio", libportaudio) provides(Pacman, "portaudio", libportaudio)

View file

@ -1,9 +1,7 @@
module PortAudio module PortAudio
using SampleTypes using SampleTypes
using Compat
using FixedPointNumbers
using Devectorize using Devectorize
using RingBuffers
# Get binary dependencies loaded from BinDeps # Get binary dependencies loaded from BinDeps
include( "../deps/deps.jl") include( "../deps/deps.jl")