aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-11-21 00:05:48 +0100
committerMax Kellermann <max@duempel.org>2015-11-21 00:05:48 +0100
commite70f7141be86ba97a034224e6357154ff8a7b8e5 (patch)
tree13b11fa8ed6c097b13ed4718c586fdf9ed4680ce /python
parent7a08ce7ece74b63ab2a2ea66e591715029f56dea (diff)
downloadmpd-e70f7141be86ba97a034224e6357154ff8a7b8e5.tar.gz
mpd-e70f7141be86ba97a034224e6357154ff8a7b8e5.tar.xz
mpd-e70f7141be86ba97a034224e6357154ff8a7b8e5.zip
{android,win32}/build.py: move class AutotoolsProject to build/autotools.py
Diffstat (limited to 'python')
-rw-r--r--python/build/autotools.py45
1 files changed, 45 insertions, 0 deletions
diff --git a/python/build/autotools.py b/python/build/autotools.py
new file mode 100644
index 000000000..02744de4a
--- /dev/null
+++ b/python/build/autotools.py
@@ -0,0 +1,45 @@
+import os.path, subprocess
+
+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)