libsndfile-1.0.28-GCCcore-10.2.0.eb 796 B

12345678910111213141516171819202122232425
  1. easyblock = 'ConfigureMake'
  2. name = 'libsndfile'
  3. version = '1.0.28'
  4. homepage = 'http://www.mega-nerd.com/libsndfile'
  5. description = """Libsndfile is a C library for reading and writing files containing sampled sound
  6. (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface."""
  7. toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
  8. source_urls = ['http://www.mega-nerd.com/libsndfile/files/']
  9. sources = [SOURCE_TAR_GZ]
  10. checksums = ['1ff33929f042fa333aed1e8923aa628c3ee9e1eb85512686c55092d1e5a9dfa9']
  11. builddependencies = [('binutils', '2.35')]
  12. configopts = '--enable-octave=no'
  13. sanity_check_paths = {
  14. 'files': ['include/sndfile.h', 'include/sndfile.hh', 'lib/libsndfile.a', 'lib/libsndfile.%s' % SHLIB_EXT],
  15. 'dirs': ['bin'],
  16. }
  17. moduleclass = 'lib'