Changes in / [131d1eb:a280ed1]
- Files:
-
- 2 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.circleci/config.yml
r131d1eb ra280ed1 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
r131d1eb ra280ed1 62 62 - libsndfile1-dev 63 63 - libsamplerate-dev 64 - libvorbis-dev65 64 - libjack-dev 66 65 - libasound2-dev … … 73 72 - ffmpeg 74 73 - libsndfile 75 - libvorbis76 74 - lcov 77 75 #update: true -
azure-pipelines.yml
r131d1eb ra280ed1 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
r131d1eb ra280ed1 12 12 uselib += ['AVRESAMPLE'] 13 13 uselib += ['AVUTIL'] 14 uselib += ['VORBISENC']15 14 uselib += ['BLAS'] 16 15 -
wscript
r131d1eb ra280ed1 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 vorbis ogg',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.