2018-05-02 23:58:34 +02:00
|
|
|
#!/usr/bin/python
|
2019-05-03 10:18:23 +02:00
|
|
|
import realog.debug as debug
|
2018-05-02 23:58:34 +02:00
|
|
|
import lutin.tools as tools
|
|
|
|
import os
|
|
|
|
|
|
|
|
def get_type():
|
|
|
|
return "LIBRARY"
|
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "webp-webpdecoder library"
|
|
|
|
|
|
|
|
#def get_licence():
|
|
|
|
# return "UNKNOW"
|
|
|
|
|
|
|
|
def get_compagny_type():
|
|
|
|
return "org"
|
|
|
|
|
|
|
|
def get_compagny_name():
|
|
|
|
return "webp"
|
|
|
|
|
|
|
|
#def get_maintainer():
|
|
|
|
# return "UNKNOW"
|
|
|
|
|
|
|
|
def get_version():
|
|
|
|
return "version.txt"
|
|
|
|
|
|
|
|
def configure(target, my_module):
|
|
|
|
my_module.add_src_file([
|
|
|
|
'webp/src/utils/bit_reader_utils.c',
|
|
|
|
'webp/src/utils/color_cache_utils.c',
|
|
|
|
'webp/src/utils/filters_utils.c',
|
|
|
|
'webp/src/utils/huffman_utils.c',
|
|
|
|
'webp/src/utils/quant_levels_dec_utils.c',
|
|
|
|
'webp/src/utils/rescaler_utils.c',
|
|
|
|
'webp/src/utils/random_utils.c',
|
|
|
|
'webp/src/utils/thread_utils.c',
|
|
|
|
'webp/src/utils/utils.c',
|
|
|
|
])
|
|
|
|
|
|
|
|
my_module.add_header_file([
|
|
|
|
'webp/src/utils/*.h',
|
|
|
|
], clip_path='webp')
|
|
|
|
|
|
|
|
my_module.add_path([
|
|
|
|
'webp/src/utils',
|
|
|
|
'webp/build/',
|
|
|
|
'webp/',
|
|
|
|
], export=False)
|
|
|
|
|
|
|
|
|
|
|
|
my_module.add_flag('c', [
|
|
|
|
'-DHAVE_CONFIG_H',
|
|
|
|
'-DNDEBUG',
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
my_module.add_flag('c', [
|
|
|
|
'-Wall',
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
my_module.add_depend([
|
|
|
|
'cxx',
|
|
|
|
'pthread',
|
2018-10-23 22:19:00 +02:00
|
|
|
'webp-webp',
|
2018-05-02 23:58:34 +02:00
|
|
|
])
|
|
|
|
return True
|
|
|
|
|
|
|
|
|