mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 10:21:22 +01:00

deleted: a/Anaconda2/Anaconda2-4.4.0.eb deleted: a/Anaconda3/Anaconda3-2019.10.eb deleted: a/Anaconda3/Anaconda3-4.4.0.eb deleted: a/Anaconda3/Anaconda3-5.3.1.eb deleted: a/Autotools/Autotools-20150215-GCC-6.3.0-2.27.eb deleted: a/Autotools/Autotools-20170619.eb deleted: a/Autotools/Autotools-20180311.eb
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
# adapted by PERMON team
|
|
|
|
easyblock = 'MakeCp'
|
|
|
|
name = 'LIBSVM'
|
|
version = '3.22'
|
|
|
|
homepage = 'http://www.csie.ntu.edu.tw/~cjlin/libsvm/'
|
|
description = """LIBSVM is an integrated software for support vector classification, (C-SVC, nu-SVC), regression
|
|
(epsilon-SVR, nu-SVR) and distribution estimation (one-class SVM). It supports multi-class classification."""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2017a'}
|
|
|
|
source_urls = [homepage]
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
|
|
dependencies = [('Qt', '4.8.6', '', True)]
|
|
|
|
buildopts = ' && cd svm-toy/qt && make MOC=$EBROOTQT/bin/moc '
|
|
buildopts += 'CFLAGS="$CFLAGS -I$EBROOTQT/include -I$EBROOTQT/include/QtGui -lQtGui -lQtCore" && cd -'
|
|
|
|
files_to_copy = [(['svm-*'], 'bin'), 'tools']
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'bin/svm-%s' %
|
|
x for x in [
|
|
'predict',
|
|
'scale',
|
|
'train']] +
|
|
['bin/svm-toy/qt/svm-toy'],
|
|
'dirs': [
|
|
'bin/svm-toy',
|
|
'tools'],
|
|
}
|
|
|
|
modextrapaths = {
|
|
'PATH': ['bin', 'bin/svm-toy/qt'],
|
|
}
|
|
|
|
moduleclass = 'numlib'
|