CppUnit-1.15.1-GCCcore-10.2.0.eb 702 B

12345678910111213141516171819202122232425262728
  1. easyblock = 'ConfigureMake'
  2. name = 'CppUnit'
  3. version = '1.15.1'
  4. homepage = 'https://freedesktop.org/wiki/Software/cppunit/'
  5. description = """
  6. CppUnit is the C++ port of the famous JUnit framework for unit testing.
  7. """
  8. toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
  9. source_urls = ['https://dev-www.libreoffice.org/src']
  10. sources = [SOURCELOWER_TAR_GZ]
  11. checksums = ['89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7']
  12. builddependencies = [
  13. ('binutils', '2.35'),
  14. ]
  15. sanity_check_paths = {
  16. 'files': ['lib/libcppunit.a', 'lib/libcppunit.%s' % SHLIB_EXT,
  17. 'lib/pkgconfig/cppunit.pc'],
  18. 'dirs': ['bin', 'include/cppunit', 'share'],
  19. }
  20. moduleclass = 'tools'