Author: Matti Picus <[email protected]> Branch: Changeset: r1112:efd944b812ac Date: 2019-11-30 20:24 +0100 http://bitbucket.org/pypy/buildbot/changeset/efd944b812ac/
Log: add missing file diff --git a/docker/install_xz5.sh b/docker/install_xz5.sh new file mode 100644 --- /dev/null +++ b/docker/install_xz5.sh @@ -0,0 +1,18 @@ +#!/bin/bash +set -xe +XZ5_FILE=xz-5.2.4.tar.gz + +wget -q "https://tukaani.org/xz/${XZ5_FILE}" +gpg --import lasse_collin_pubkey.txt +gpg --verify ${XZ5_FILE}.sig ${XZ5_FILE} + +tar zxf ${XZ5_FILE} +pushd xz-5* +if [ "$2" == "m32" ]; then + setarch i386 ./configure --prefix=/usr/local CFLAGS="-m32" +else + ./configure --prefix=/usr/local +fi +make install +popd +rm -rf xz-5* _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
