Changes in / [d81e16d:05774ba3]
- Files:
-
- 2 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.circleci/config.yml
rd81e16d r05774ba3 3 3 command: | 4 4 sudo apt-get update 5 sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev libvorbis-dev5 sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev 6 6 7 7 pip-install: &pip-install -
.travis.yml
rd81e16d r05774ba3 58 58 - libsndfile1-dev 59 59 - libsamplerate-dev 60 - libvorbis-dev61 60 - libjack-dev 62 61 - libasound2-dev … … 69 68 - ffmpeg 70 69 - libsndfile 71 - libvorbis72 70 - lcov 73 71 #update: true -
azure-pipelines.yml
rd81e16d r05774ba3 30 30 brew update 31 31 brew install pkg-config gnupg 32 brew install sox ffmpeg libsndfile l ibvorbis lcov32 brew install sox ffmpeg libsndfile lcov 33 33 displayName: 'brew install' 34 34 - script: | -
src/wscript_build
rd81e16d r05774ba3 12 12 uselib += ['AVRESAMPLE'] 13 13 uselib += ['AVUTIL'] 14 uselib += ['VORBISENC']15 14 uselib += ['BLAS'] 16 15 -
wscript
rd81e16d r05774ba3 67 67 help_str = 'compile with libavcodec (auto)', 68 68 help_disable_str = 'disable libavcodec') 69 add_option_enable_disable(ctx, 'vorbis', default = None,70 help_str = 'compile with libvorbis (auto)',71 help_disable_str = 'disable libvorbis')72 69 add_option_enable_disable(ctx, 'samplerate', default = None, 73 70 help_str = 'compile with samplerate (auto)', … … 432 429 ctx.define('HAVE_AVRESAMPLE', 1) 433 430 ctx.define('HAVE_LIBAV', 1) 434 435 # check for vorbisenc436 if (ctx.options.enable_vorbis != False):437 ctx.check_cfg(package = 'vorbisenc',438 args = '--cflags --libs',439 uselib_store = 'VORBISENC',440 mandatory = ctx.options.enable_vorbis)441 431 442 432 if (ctx.options.enable_wavread != False):
Note: See TracChangeset
for help on using the changeset viewer.