blob: e17f202b5dca581d6914f2150eb172c6458f8dc6 (
plain)
1 # Description: POP3 mail retriever with reliable Maildir and command delivery
2 # URL: https://getmail6.org
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: python3-setuptools
5
6 name=getmail
7 version=6.14
8 release=1
9 source=(https://github.com/getmail6/getmail6/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd ${name}6-$version
13 /usr/bin/python3 setup.py install --prefix=/usr --root=$PKG
14 rm -fr $PKG/usr/share/doc
15 }
|