[DEV] add basic lutin wrapper

This commit is contained in:
Edouard DUPIN 2015-06-15 22:44:56 +02:00
commit cc2cc9ee9e
4 changed files with 56 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "ogg"]
path = ogg
url = https://github.com/generic-library/ogg.git

5
README.md Normal file
View File

@ -0,0 +1,5 @@
Lutin wrapper
=============
Used to compile the library with lutin builder interface

47
lutin_ogg.py Normal file
View File

@ -0,0 +1,47 @@
#!/usr/bin/python
import lutin.module as module
import lutin.tools as tools
import lutin.debug as debug
def get_desc():
return "Ogg-tremor library for ogg audio decoding"
def create(target):
myModule = module.Module(__file__, 'ogg', 'LIBRARY')
myModule.add_src_file([
'ogg/ogg/framing.c',
'ogg/ogg/bitwise.c',
'ogg/tremor/floor0.c',
'ogg/tremor/vorbisfile.c',
'ogg/tremor/synthesis.c',
'ogg/tremor/res012.c',
'ogg/tremor/block.c',
'ogg/tremor/mdct.c',
'ogg/tremor/sharedbook.c',
'ogg/tremor/codebook.c',
'ogg/tremor/floor1.c',
'ogg/tremor/window.c',
'ogg/tremor/registry.c',
'ogg/tremor/info.c',
'ogg/tremor/mapping0.c'
])
myModule.compile_version_CC(1989, gnu=True)
myModule.compile_flags('c', "-Wno-duplicate-decl-specifier")
if target.name=="Android":
myModule.compile_flags('c', "-DBYTE_ORDER=1")
myModule.compile_flags('c', "-DBIG_ENDIAN=0")
myModule.compile_flags('c', "-DLITTLE_ENDIAN=1")
myModule.add_export_path(tools.get_current_path(__file__) + "/ogg")
myModule.add_path(tools.get_current_path(__file__)+"/ogg/ogg/")
myModule.add_path(tools.get_current_path(__file__)+"/ogg/tremor/")
return myModule

1
ogg Submodule

@ -0,0 +1 @@
Subproject commit 686504fa5d6e0c852c77376de977b4560d892167