2019-03-30 21:58:45 +01:00
|
|
|
from pythonforandroid.toolchain import Recipe, current_directory, shprint
|
2017-08-13 03:24:00 +02:00
|
|
|
from os.path import exists, join, realpath
|
|
|
|
import sh
|
|
|
|
|
|
|
|
|
|
|
|
class LibX264Recipe(Recipe):
|
2019-03-30 21:58:45 +01:00
|
|
|
version = 'x264-snapshot-20171218-2245-stable' # using mirror url since can't use ftp
|
2017-08-13 03:24:00 +02:00
|
|
|
url = 'http://mirror.yandex.ru/mirrors/ftp.videolan.org/x264/snapshots/{version}.tar.bz2'
|
|
|
|
|
|
|
|
def should_build(self, arch):
|
|
|
|
build_dir = self.get_build_dir(arch.arch)
|
|
|
|
return not exists(join(build_dir, 'lib', 'libx264.a'))
|
|
|
|
|
|
|
|
def build_arch(self, arch):
|
|
|
|
with current_directory(self.get_build_dir(arch.arch)):
|
|
|
|
env = self.get_recipe_env(arch)
|
|
|
|
configure = sh.Command('./configure')
|
|
|
|
shprint(configure,
|
|
|
|
'--cross-prefix=arm-linux-androideabi-',
|
|
|
|
'--host=arm-linux',
|
|
|
|
'--disable-asm',
|
|
|
|
'--disable-cli',
|
|
|
|
'--enable-pic',
|
|
|
|
'--disable-shared',
|
|
|
|
'--enable-static',
|
|
|
|
'--prefix={}'.format(realpath('.')),
|
|
|
|
_env=env)
|
|
|
|
shprint(sh.make, '-j4', _env=env)
|
|
|
|
shprint(sh.make, 'install', _env=env)
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
recipe = LibX264Recipe()
|