2015-06-15 22:43:44 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
import lutin.module as module
|
|
|
|
import lutin.tools as tools
|
|
|
|
|
2015-10-14 21:21:03 +02:00
|
|
|
|
|
|
|
def get_type():
|
|
|
|
return "BINARY"
|
|
|
|
|
|
|
|
def get_sub_type():
|
|
|
|
return "TEST"
|
|
|
|
|
2015-06-15 22:43:44 +02:00
|
|
|
def get_desc():
|
2015-10-14 21:21:03 +02:00
|
|
|
return "Encode U wide band"
|
2015-06-15 22:43:44 +02:00
|
|
|
|
2015-10-14 21:21:03 +02:00
|
|
|
def get_licence():
|
|
|
|
return "BSD-3"
|
2015-06-15 22:43:44 +02:00
|
|
|
|
2015-10-14 21:21:03 +02:00
|
|
|
def get_compagny_type():
|
|
|
|
return "org"
|
|
|
|
|
|
|
|
def get_compagny_name():
|
|
|
|
return "Xiph"
|
|
|
|
|
|
|
|
def create(target, module_name):
|
|
|
|
my_module = module.Module(__file__, module_name, get_type())
|
2015-09-24 21:44:04 +02:00
|
|
|
my_module.add_extra_compile_flags()
|
|
|
|
my_module.add_src_file([
|
2015-06-15 22:43:44 +02:00
|
|
|
'speex/libspeex/testenc_uwb.c'
|
|
|
|
])
|
|
|
|
|
2015-10-14 21:21:03 +02:00
|
|
|
my_module.compile_version('c', 1989, gnu=True)
|
2015-09-24 21:44:04 +02:00
|
|
|
my_module.add_module_depend('speex')
|
|
|
|
return my_module
|
2015-06-15 22:43:44 +02:00
|
|
|
|
|
|
|
|