2016-09-21 21:52:32 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
import lutin.tools as tools
|
|
|
|
import lutin.debug as debug
|
|
|
|
import os
|
|
|
|
|
|
|
|
def get_type():
|
|
|
|
#return "BINARY_SHARED"
|
|
|
|
return "BINARY"
|
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "FFMPEG main application"
|
|
|
|
|
|
|
|
def get_licence():
|
|
|
|
return "LGPL-2.1"
|
|
|
|
|
|
|
|
def get_compagny_type():
|
|
|
|
return "org"
|
|
|
|
|
|
|
|
def get_compagny_name():
|
|
|
|
return "ffmpeg"
|
|
|
|
|
|
|
|
def get_maintainer():
|
|
|
|
return "authors.txt"
|
|
|
|
|
|
|
|
def get_version():
|
|
|
|
return "version.txt"
|
|
|
|
|
2016-10-04 23:41:29 +02:00
|
|
|
def configure(target, my_module):
|
2016-09-21 21:52:32 +02:00
|
|
|
|
|
|
|
# add the file to compile:
|
|
|
|
my_module.add_src_file([
|
|
|
|
'ffmpeg/ffplay.c',
|
|
|
|
'ffmpeg/cmdutils.c',
|
|
|
|
])
|
|
|
|
|
2016-10-04 23:41:29 +02:00
|
|
|
my_module.add_path("ffmpeg")
|
|
|
|
my_module.add_path("generated")
|
2016-09-21 21:52:32 +02:00
|
|
|
my_module.add_depend([
|
|
|
|
'ffmpeg-libs',
|
|
|
|
'va',
|
|
|
|
'SDL',
|
|
|
|
])
|
2016-10-04 23:41:29 +02:00
|
|
|
return False
|
2016-09-21 21:52:32 +02:00
|
|
|
|
|
|
|
|