[DEV] add basis
This commit is contained in:
commit
e9ba7d4363
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
*~
|
||||
*.swp
|
||||
*.old
|
||||
*.bck
|
||||
*.pyc
|
||||
tags
|
||||
*.7z
|
||||
*.dmg
|
||||
*.gz
|
||||
*.iso
|
||||
*.jar
|
||||
*.rar
|
||||
*.tar
|
||||
*.zip
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
18
lutin_festival.py
Normal file
18
lutin_festival.py
Normal file
@ -0,0 +1,18 @@
|
||||
#!/usr/bin/python
|
||||
import lutin.module as module
|
||||
import lutin.tools as tools
|
||||
|
||||
def get_desc():
|
||||
return "festival TTS engine"
|
||||
|
||||
def create(target):
|
||||
myModule = module.Module(__file__, 'festival', 'LIBRARY')
|
||||
myModule.add_src_file([
|
||||
# TODO: ...
|
||||
])
|
||||
myModule.compile_version_CC(1999)
|
||||
# TODO: copy in install folder ...
|
||||
myModule.add_export_path(tools.get_current_path(__file__) + "/festival/src/include")
|
||||
return myModule
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user