diff options
author | Max Kellermann <max@duempel.org> | 2015-11-21 00:36:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-11-21 00:36:54 +0100 |
commit | 89d5d480d722ebed7a9e7d88fd63d2dabd4b96b0 (patch) | |
tree | ccb62ab51798a7977789fb30b5134950535fd271 /python/build | |
parent | fbcacb590beb981d252e9f46baec9461ff1e7fd9 (diff) | |
download | mpd-89d5d480d722ebed7a9e7d88fd63d2dabd4b96b0.tar.gz mpd-89d5d480d722ebed7a9e7d88fd63d2dabd4b96b0.tar.xz mpd-89d5d480d722ebed7a9e7d88fd63d2dabd4b96b0.zip |
{android,win32}/build.py: move class FfmpegProject to build/ffmpeg.py
Diffstat (limited to 'python/build')
-rw-r--r-- | python/build/ffmpeg.py | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/python/build/ffmpeg.py b/python/build/ffmpeg.py new file mode 100644 index 000000000..b3ed215a2 --- /dev/null +++ b/python/build/ffmpeg.py @@ -0,0 +1,48 @@ +import os.path, subprocess + +from build.project import Project + +class FfmpegProject(Project): + def __init__(self, url, md5, installed, configure_args=[], + cppflags='', + **kwargs): + Project.__init__(self, url, md5, installed, **kwargs) + self.configure_args = configure_args + self.cppflags = cppflags + + def build(self, toolchain): + src = self.unpack(toolchain) + build = self.make_build_path(toolchain) + + if toolchain.is_arm: + arch = 'arm' + else: + arch = 'x86' + + if toolchain.is_windows: + target_os = 'mingw32' + else: + target_os = 'linux' + + configure = [ + os.path.join(src, 'configure'), + '--cc=' + toolchain.cc, + '--cxx=' + toolchain.cxx, + '--nm=' + toolchain.nm, + '--extra-cflags=' + toolchain.cflags + ' ' + toolchain.cppflags + ' ' + self.cppflags, + '--extra-cxxflags=' + toolchain.cxxflags + ' ' + toolchain.cppflags + ' ' + self.cppflags, + '--extra-ldflags=' + toolchain.ldflags, + '--extra-libs=' + toolchain.libs, + '--ar=' + toolchain.ar, + '--enable-cross-compile', + '--arch=' + arch, + '--target-os=' + target_os, + '--prefix=' + toolchain.install_prefix, + ] + self.configure_args + + if toolchain.is_armv7: + configure.append('--cpu=cortex-a8') + + subprocess.check_call(configure, cwd=build, env=toolchain.env) + subprocess.check_call(['/usr/bin/make', '--quiet', '-j12'], cwd=build, env=toolchain.env) + subprocess.check_call(['/usr/bin/make', '--quiet', 'install'], cwd=build, env=toolchain.env) |