removes some unused dependencies and trying a new APT package name
This commit is contained in:
parent
d193a9c83d
commit
f834773b34
3 changed files with 2 additions and 5 deletions
1
REQUIRE
1
REQUIRE
|
@ -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
2
deps/build.jl
vendored
|
@ -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)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue