Changes in / [cf4bc9f:171ae68]
- Files:
-
- 2 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified .circleci/config.yml ¶
rcf4bc9f r171ae68 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-dev libflac-dev5 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 -
TabularUnified .travis.yml ¶
rcf4bc9f r171ae68 63 63 - libsamplerate-dev 64 64 - libvorbis-dev 65 - libflac-dec66 65 - libjack-dev 67 66 - libasound2-dev … … 75 74 - libsndfile 76 75 - libvorbis 77 - flac78 76 - lcov 79 77 #update: true -
TabularUnified azure-pipelines.yml ¶
rcf4bc9f r171ae68 30 30 brew update 31 31 brew install pkg-config gnupg 32 brew install sox ffmpeg libsndfile libvorbis flaclcov32 brew install sox ffmpeg libsndfile libvorbis lcov 33 33 displayName: 'brew install' 34 34 - script: | -
TabularUnified src/wscript_build ¶
rcf4bc9f r171ae68 13 13 uselib += ['AVUTIL'] 14 14 uselib += ['VORBISENC'] 15 uselib += ['FLAC']16 15 uselib += ['BLAS'] 17 16 -
TabularUnified wscript ¶
rcf4bc9f r171ae68 70 70 help_str = 'compile with libvorbis (auto)', 71 71 help_disable_str = 'disable libvorbis') 72 add_option_enable_disable(ctx, 'flac', default = None,73 help_str = 'compile with libFLAC (auto)',74 help_disable_str = 'disable libflac')75 72 add_option_enable_disable(ctx, 'samplerate', default = None, 76 73 help_str = 'compile with samplerate (auto)', … … 442 439 uselib_store = 'VORBISENC', 443 440 mandatory = ctx.options.enable_vorbis) 444 445 # check for flac446 if (ctx.options.enable_flac != False):447 ctx.check_cfg(package = 'flac',448 args = '--cflags --libs',449 uselib_store = 'FLAC',450 mandatory = ctx.options.enable_flac)451 441 452 442 if (ctx.options.enable_wavread != False):
Note: See TracChangeset
for help on using the changeset viewer.