From ce59296363688c0afd147447252e7b265e14ab6f Mon Sep 17 00:00:00 2001 From: Simon Pinches Date: Sat, 1 Jun 2024 12:57:02 +0200 Subject: [PATCH] add easyconfig: CppUnit-1.15.1-GCCcore-13.2.0.eb --- .../CppUnit/CppUnit-1.15.1-GCCcore-13.2.0.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/c/CppUnit/CppUnit-1.15.1-GCCcore-13.2.0.eb diff --git a/easybuild/easyconfigs/c/CppUnit/CppUnit-1.15.1-GCCcore-13.2.0.eb b/easybuild/easyconfigs/c/CppUnit/CppUnit-1.15.1-GCCcore-13.2.0.eb new file mode 100644 index 00000000000..61cf2322c72 --- /dev/null +++ b/easybuild/easyconfigs/c/CppUnit/CppUnit-1.15.1-GCCcore-13.2.0.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'CppUnit' +version = '1.15.1' + +homepage = 'https://freedesktop.org/wiki/Software/cppunit/' + +description = """ + CppUnit is the C++ port of the famous JUnit framework for unit testing. +""" + +toolchain = {'name': 'GCCcore', 'version': '13.2.0'} + +source_urls = ['https://dev-www.libreoffice.org/src'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7'] + +builddependencies = [ + ('binutils', '2.40'), +] + +sanity_check_paths = { + 'files': ['lib/libcppunit.a', 'lib/libcppunit.%s' % SHLIB_EXT, + 'lib/pkgconfig/cppunit.pc'], + 'dirs': ['bin', 'include/cppunit', 'share'], +} + +moduleclass = 'tools'