summaryrefslogtreecommitdiffhomepage
path: root/344.python3.vars
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-06-23 10:15:58 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-06-23 10:15:58 +0000
commit6ad215340b9d994ea78e985670724517623233c6 (patch)
tree1d18449c82608476db22804bf6b36c0043931454 /344.python3.vars
parentd751dbf6555a7ef92df6634366682afe9450f80f (diff)
downloadmidipix_build-6ad215340b9d994ea78e985670724517623233c6.tar.bz2
midipix_build-6ad215340b9d994ea78e985670724517623233c6.tar.xz
Adds Lua v5.3.3 (via daurnimator and[1].)
References: Thu, 23 Jun 2016 10:16:16 +0000 [1] svntogit/packages.git - Git clone of the 'packages' repository <https://git.archlinux.org/svntogit/packages.git/tree/trunk/liblua.so.patch?h=packages/lua>
Diffstat (limited to '344.python3.vars')
-rw-r--r--344.python3.vars19
1 files changed, 19 insertions, 0 deletions
diff --git a/344.python3.vars b/344.python3.vars
new file mode 100644
index 00000000..c987c798
--- /dev/null
+++ b/344.python3.vars
@@ -0,0 +1,19 @@
+#
+# . ./build.vars and set -o errexit are assumed.
+#
+
+pkg_python3_configure_pre() {
+ (cd ../${PKG_SUBDIR} && autoconf);
+ (unset BLDSHARED CC CFLAGS CPPFLAGS LDFLAGS;
+ mv config.cache ../${PKG_SUBDIR}/config.cache;
+ ../${PKG_SUBDIR}/configure;
+ make _FIP=Programs/host_freeze_importlib Programs/host_freeze_importlib \
+ BUILDPYTHON=hostpython hostpython \
+ PGEN=Parser/hostpgen Parser/hostpgen;
+ make distclean);
+ mv ../${PKG_SUBDIR}/config.cache .;
+ sed -i.orig '/^# autoconf/a\
+ac_cv_buggy_getaddrinfo=no' config.cache;
+};
+
+# vim:filetype=sh