Changes in / [0e6ad10:09b4be9]
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.circleci/config.yml
r0e6ad10 r09b4be9 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 -
.travis.yml
r0e6ad10 r09b4be9 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 -
azure-pipelines.yml
r0e6ad10 r09b4be9 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: | -
src/wscript_build
r0e6ad10 r09b4be9 13 13 uselib += ['AVUTIL'] 14 14 uselib += ['VORBISENC'] 15 uselib += ['FLAC'] 15 16 uselib += ['BLAS'] 16 17 -
wscript
r0e6ad10 r09b4be9 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.