mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
20 lines
649 B
Bash
20 lines
649 B
Bash
# $Id: PKGBUILD 54334 2009-10-08 21:19:00Z andyrtr $
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
# Committer: Manolis Tzanidakis <manolis@archlinux.org>
|
|
|
|
pkgname=getmail
|
|
pkgver=4.12.0
|
|
pkgrel=1
|
|
pkgdesc="A POP3 mail retriever with reliable Maildir and command delivery."
|
|
arch=(i686 x86_64)
|
|
url="http://pyropus.ca/software/getmail"
|
|
license="GPL"
|
|
depends=('python>=2.6.2')
|
|
source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('a3f36451ff47b91b1ac74543e933bb9c')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
/usr/bin/python setup.py build || return 1
|
|
/usr/bin/python setup.py install --root=${pkgdir}
|
|
}
|