Changes in / [a2019c4:e2f1e6d]
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified .circleci/config.yml ¶
ra2019c4 re2f1e6d 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 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-dev 6 6 7 7 pip-install: &pip-install -
TabularUnified .travis.yml ¶
ra2019c4 re2f1e6d 59 59 - libsamplerate-dev 60 60 - libvorbis-dev 61 - libflac-dec 61 62 - libjack-dev 62 63 - libasound2-dev … … 70 71 - libsndfile 71 72 - libvorbis 73 - flac 72 74 - lcov 73 75 #update: true -
TabularUnified azure-pipelines.yml ¶
ra2019c4 re2f1e6d 30 30 brew update 31 31 brew install pkg-config gnupg 32 brew install sox ffmpeg libsndfile libvorbis lcov32 brew install sox ffmpeg libsndfile libvorbis flac lcov 33 33 displayName: 'brew install' 34 34 - script: | -
TabularUnified src/wscript_build ¶
ra2019c4 re2f1e6d 13 13 uselib += ['AVUTIL'] 14 14 uselib += ['VORBISENC'] 15 uselib += ['FLAC'] 15 16 uselib += ['BLAS'] 16 17 -
TabularUnified wscript ¶
ra2019c4 re2f1e6d 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') 72 75 add_option_enable_disable(ctx, 'samplerate', default = None, 73 76 help_str = 'compile with samplerate (auto)', … … 439 442 uselib_store = 'VORBISENC', 440 443 mandatory = ctx.options.enable_vorbis) 444 445 # check for flac 446 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) 441 451 442 452 if (ctx.options.enable_wavread != False):
Note: See TracChangeset
for help on using the changeset viewer.