Kaldi package: add version 7637de7 and egs (#12911)

This commit is contained in:
Jimmy Tang 2019-10-01 18:24:03 +01:00 committed by Peter Scheibel
parent 5868e0f5f2
commit a7e64e5396

View File

@ -18,6 +18,7 @@ class Kaldi(Package): # Does not use Autotools
git = "https://github.com/kaldi-asr/kaldi.git" git = "https://github.com/kaldi-asr/kaldi.git"
version('master') version('master')
version('2019-07-29', commit='7637de77e0a77bf280bef9bf484e4f37c4eb9475')
version('2018-07-11', commit='6f2140b032b0108bc313eefdca65151289642773') version('2018-07-11', commit='6f2140b032b0108bc313eefdca65151289642773')
version('2015-10-07', commit='c024e8aa0a727bf76c91a318f76a1f8b0b59249e') version('2015-10-07', commit='c024e8aa0a727bf76c91a318f76a1f8b0b59249e')
@ -35,6 +36,8 @@ class Kaldi(Package): # Does not use Autotools
depends_on('speex', type='run') depends_on('speex', type='run')
depends_on('openfst@1.4.1-patch', when='@2015-10-07') depends_on('openfst@1.4.1-patch', when='@2015-10-07')
depends_on('openfst@1.6.0:', when='@2018-07-11') depends_on('openfst@1.6.0:', when='@2018-07-11')
depends_on('openfst@1.6.0:', when='@2019-07-29')
depends_on('cub', when='@2019-07-29:')
depends_on('openfst') depends_on('openfst')
patch('openfst-1.4.1.patch', when='@2015-10-07') patch('openfst-1.4.1.patch', when='@2015-10-07')
@ -69,6 +72,9 @@ def install(self, spec, prefix):
configure_args.append('--use-cuda=yes') configure_args.append('--use-cuda=yes')
configure_args.append('--cudatk-dir=' + spec['cuda'].prefix) configure_args.append('--cudatk-dir=' + spec['cuda'].prefix)
if spec.satisfies('@2019-07-29:'):
configure_args.append('--cub-root=' + spec['cub'].prefix.include)
with working_dir("src"): with working_dir("src"):
configure(*configure_args) configure(*configure_args)
make() make()
@ -99,3 +105,5 @@ def install(self, spec, prefix):
mkdirp(join(prefix.include, root.strip("./"))) mkdirp(join(prefix.include, root.strip("./")))
install(join(root, name), install(join(root, name),
join(prefix.include, root.strip("./"))) join(prefix.include, root.strip("./")))
egs_dir = join(prefix, 'egs')
install_tree('egs', egs_dir)