aedi: update sndfile to 1.2.0

This commit is contained in:
alexey.lysiuk 2022-12-26 15:50:52 +02:00
parent fabe899ea1
commit e6f153dd00

View file

@ -513,14 +513,15 @@ class SndFileTarget(CMakeStaticDependencyTarget):
def prepare_source(self, state: BuildState):
state.download_source(
'https://github.com/libsndfile/libsndfile/releases/download/1.1.0/libsndfile-1.1.0.tar.xz',
'0f98e101c0f7c850a71225fb5feaf33b106227b3d331333ddc9bacee190bcf41')
'https://github.com/libsndfile/libsndfile/releases/download/1.2.0/libsndfile-1.2.0.tar.xz',
'0e30e7072f83dc84863e2e55f299175c7e04a5902ae79cfb99d4249ee8f6d60a')
def configure(self, state: BuildState):
opts = state.options
opts['BUILD_REGTEST'] = 'NO'
opts['BUILD_EXAMPLES'] = 'NO'
opts['BUILD_PROGRAMS'] = 'NO'
opts['BUILD_TESTING'] = 'NO'
opts['ENABLE_MPEG'] = 'NO'
opts['ENABLE_CPACK'] = 'NO'
super().configure(state)