From: its-pointless Date: Sat, 26 Mar 2016 06:36:46 +0000 (+1100) Subject: Create build.sh X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/d7e4d08115bc42649b1c7684a2233256e26d5ab4?ds=inline Create build.sh --- diff --git a/packages/getmail/build.sh b/packages/getmail/build.sh new file mode 100644 index 00000000..c94e63ba --- /dev/null +++ b/packages/getmail/build.sh @@ -0,0 +1,15 @@ +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_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 +} + +termux_step_post_massage () { + find . -path '*.pyc' -delete +}