Compare commits

...

1 commit

Author SHA1 Message Date
Spencer Russell
99ac59c936 temporarily removes Pacman support until BinDeps is released with it 2014-08-29 01:23:33 -04:00
2 changed files with 2 additions and 3 deletions

View file

@ -14,7 +14,6 @@ before_install:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
script: script:
- julia -e 'Pkg.init()' - julia -e 'Pkg.init()'
- julia -e 'Pkg.add("BinDeps"); Pkg.checkout("BinDeps")' # latest master needed for Pacman support
- julia -e 'Pkg.clone(pwd()); Pkg.build("AudioIO")' - julia -e 'Pkg.clone(pwd()); Pkg.build("AudioIO")'
- julia -e 'Pkg.test("AudioIO", coverage=true)' - julia -e 'Pkg.test("AudioIO", coverage=true)'
after_success: after_success:

4
deps/build.jl vendored
View file

@ -10,8 +10,8 @@ libsndfile = library_dependency("libsndfile")
# TODO: add other providers with correct names # TODO: add other providers with correct names
provides(AptGet, {"portaudio19-dev" => libportaudio}) provides(AptGet, {"portaudio19-dev" => libportaudio})
provides(AptGet, {"libsndfile1-dev" => libsndfile}) provides(AptGet, {"libsndfile1-dev" => libsndfile})
provides(Pacman, {"portaudio" => libportaudio}) #provides(Pacman, {"portaudio" => libportaudio})
provides(Pacman, {"libsndfile" => libsndfile}) #provides(Pacman, {"libsndfile" => libsndfile})
@osx_only begin @osx_only begin