From: Fredrik Fornwall Date: Thu, 14 Apr 2016 13:25:34 +0000 (-0400) Subject: getmail: Use python2, not python X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/c04536b593444fb1659b972a466ba4376888078b?ds=sidebyside getmail: Use python2, not python This is needed since python is python3 in Termux. --- diff --git a/packages/getmail/build.sh b/packages/getmail/build.sh index c94e63ba..1c3621dd 100644 --- a/packages/getmail/build.sh +++ b/packages/getmail/build.sh @@ -1,13 +1,14 @@ TERMUX_PKG_HOMEPAGE=http://pyropus.ca/software/getmail/ TERMUX_PKG_DESCRIPTION="fetchmail replacement relatively easy to configure" TERMUX_PKG_VERSION=4.49.0 +TERMUX_PKG_BUILD_REVISION=1 TERMUX_PKG_SRCURL=http://pyropus.ca/software/getmail/old-versions/getmail-${TERMUX_PKG_VERSION}.tar.gz TERMUX_PKG_DEPENDS="python2" TERMUX_PKG_BUILD_IN_SRC=yes TERMUX_PKG_PLATFORM_INDEPENDENT=yes termux_step_make_install () { - python setup.py install --prefix=$TERMUX_PREFIX --force + python2 setup.py install --prefix=$TERMUX_PREFIX --force } termux_step_post_massage () {