Kaldi package: add version 7637de7 and egs (#12911)
This commit is contained in:
parent
5868e0f5f2
commit
a7e64e5396
@ -18,6 +18,7 @@ class Kaldi(Package): # Does not use Autotools
|
||||
git = "https://github.com/kaldi-asr/kaldi.git"
|
||||
|
||||
version('master')
|
||||
version('2019-07-29', commit='7637de77e0a77bf280bef9bf484e4f37c4eb9475')
|
||||
version('2018-07-11', commit='6f2140b032b0108bc313eefdca65151289642773')
|
||||
version('2015-10-07', commit='c024e8aa0a727bf76c91a318f76a1f8b0b59249e')
|
||||
|
||||
@ -35,6 +36,8 @@ class Kaldi(Package): # Does not use Autotools
|
||||
depends_on('speex', type='run')
|
||||
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='@2019-07-29')
|
||||
depends_on('cub', when='@2019-07-29:')
|
||||
depends_on('openfst')
|
||||
|
||||
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('--cudatk-dir=' + spec['cuda'].prefix)
|
||||
|
||||
if spec.satisfies('@2019-07-29:'):
|
||||
configure_args.append('--cub-root=' + spec['cub'].prefix.include)
|
||||
|
||||
with working_dir("src"):
|
||||
configure(*configure_args)
|
||||
make()
|
||||
@ -99,3 +105,5 @@ def install(self, spec, prefix):
|
||||
mkdirp(join(prefix.include, root.strip("./")))
|
||||
install(join(root, name),
|
||||
join(prefix.include, root.strip("./")))
|
||||
egs_dir = join(prefix, 'egs')
|
||||
install_tree('egs', egs_dir)
|
||||
|
Loading…
Reference in New Issue
Block a user