From 63156ee9bf1f72e0ff7695f30251a26f71d808b8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 18 May 2012 11:50:36 +0000 Subject: testing/getmail: new aport getmail is a mail retriever designed to allow you to get your mail from one or more mail accounts on various mail servers to your local machine for reading with a minimum of fuss. getmail is designed to be secure, flexible, reliable, and easy-to-use. http://pyropus.ca/software/getmail/ --- testing/getmail/APKBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 testing/getmail/APKBUILD (limited to 'testing/getmail') diff --git a/testing/getmail/APKBUILD b/testing/getmail/APKBUILD new file mode 100644 index 000000000..f29156c17 --- /dev/null +++ b/testing/getmail/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=getmail +pkgver=4.26.0 +pkgrel=0 +pkgdesc="POP3, IMAP4, and SDPS mail retriever with Maildir delivery" +url="http://pyropus.ca/software/getmail/" +arch="noarch" +license="GPL2" +depends="" +depends_dev="" +makedepends="python-dev" +install="" +subpackages="$pkgname-doc" +source="http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz" +_builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="a45622b355b649071a337c661533453a getmail-4.26.0.tar.gz" -- cgit v1.2.3