Changes in / [a280ed1:131d1eb]
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.circleci/config.yml
ra280ed1 r131d1eb 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 5 sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev libvorbis-dev 6 6 7 7 pip-install: &pip-install -
.travis.yml
ra280ed1 r131d1eb 62 62 - libsndfile1-dev 63 63 - libsamplerate-dev 64 - libvorbis-dev 64 65 - libjack-dev 65 66 - libasound2-dev … … 72 73 - ffmpeg 73 74 - libsndfile 75 - libvorbis 74 76 - lcov 75 77 #update: true -
azure-pipelines.yml
ra280ed1 r131d1eb 30 30 brew update 31 31 brew install pkg-config gnupg 32 brew install sox ffmpeg libsndfile l cov32 brew install sox ffmpeg libsndfile libvorbis lcov 33 33 displayName: 'brew install' 34 34 - script: | -
src/wscript_build
ra280ed1 r131d1eb 12 12 uselib += ['AVRESAMPLE'] 13 13 uselib += ['AVUTIL'] 14 uselib += ['VORBISENC'] 14 15 uselib += ['BLAS'] 15 16 -
wscript
ra280ed1 r131d1eb 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') 69 72 add_option_enable_disable(ctx, 'samplerate', default = None, 70 73 help_str = 'compile with samplerate (auto)', … … 429 432 ctx.define('HAVE_AVRESAMPLE', 1) 430 433 ctx.define('HAVE_LIBAV', 1) 434 435 # check for vorbisenc 436 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) 431 441 432 442 if (ctx.options.enable_wavread != False):
Note: See TracChangeset
for help on using the changeset viewer.