diff options
author | Max Kellermann <max@duempel.org> | 2015-11-21 00:05:48 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-11-21 00:05:48 +0100 |
commit | e70f7141be86ba97a034224e6357154ff8a7b8e5 (patch) | |
tree | 13b11fa8ed6c097b13ed4718c586fdf9ed4680ce /win32/build.py | |
parent | 7a08ce7ece74b63ab2a2ea66e591715029f56dea (diff) | |
download | mpd-e70f7141be86ba97a034224e6357154ff8a7b8e5.tar.gz mpd-e70f7141be86ba97a034224e6357154ff8a7b8e5.tar.xz mpd-e70f7141be86ba97a034224e6357154ff8a7b8e5.zip |
{android,win32}/build.py: move class AutotoolsProject to build/autotools.py
Diffstat (limited to 'win32/build.py')
-rwxr-xr-x | win32/build.py | 43 |
1 files changed, 1 insertions, 42 deletions
diff --git a/win32/build.py b/win32/build.py index d8b866699..b15f3d7e4 100755 --- a/win32/build.py +++ b/win32/build.py @@ -59,48 +59,7 @@ class CrossGccToolchain: self.env['PKG_CONFIG_LIBDIR'] = os.path.join(install_prefix, 'lib/pkgconfig') from build.project import Project - -class AutotoolsProject(Project): - def __init__(self, url, md5, installed, configure_args=[], - autogen=False, - cppflags='', - **kwargs): - Project.__init__(self, url, md5, installed, **kwargs) - self.configure_args = configure_args - self.autogen = autogen - self.cppflags = cppflags - - def build(self, toolchain): - src = self.unpack(toolchain) - if self.autogen: - subprocess.check_call(['/usr/bin/aclocal'], cwd=src) - subprocess.check_call(['/usr/bin/automake', '--add-missing', '--force-missing', '--foreign'], cwd=src) - subprocess.check_call(['/usr/bin/autoconf'], cwd=src) - subprocess.check_call(['/usr/bin/libtoolize', '--force'], cwd=src) - - build = self.make_build_path(toolchain) - - configure = [ - os.path.join(src, 'configure'), - 'CC=' + toolchain.cc, - 'CXX=' + toolchain.cxx, - 'CFLAGS=' + toolchain.cflags, - 'CXXFLAGS=' + toolchain.cxxflags, - 'CPPFLAGS=' + toolchain.cppflags + ' ' + self.cppflags, - 'LDFLAGS=' + toolchain.ldflags, - 'LIBS=' + toolchain.libs, - 'AR=' + toolchain.ar, - 'STRIP=' + toolchain.strip, - '--host=' + toolchain.arch, - '--prefix=' + toolchain.install_prefix, - '--enable-silent-rules', - ] + self.configure_args - - 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) +from build.autotools import AutotoolsProject class ZlibProject(Project): def __init__(self, url, md5, installed, |