blob: 7f46288a37974963c10253c0a39d9513da1915a5 (
plain)
1 # Description: POP3 mail retriever with reliable Maildir and command delivery
2 # URL: http://pyropus.ca/software/getmail/
3 # Maintainer: James Mills, prologic at shortcircuit dot net dot au
4 # Packager: Han Boetes, han at mijncomputer dot nl
5 #
6 # Depends on: python
7
8 name=getmail
9 version=4.7.2
10 release=2
11 source=(http://pyropus.ca/software/$name/old-versions/$name-$version.tar.gz
12 getmail.diff)
13
14 build() {
15 cd $name-$version
16 patch -i $SRC/getmail.diff
17 python setup.py install --root=$PKG
18 rm -rf $PKG/usr/share/doc
19 sed -i 's|#!/usr/bin/python|& -Wignore:.:DeprecationWarning:.:0|' $PKG/usr/bin/getmail
20 chown -R root:root $PKG
21 }
|