blob: df248a5d492d4ffc84abc31443f71bc22c1c23c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Peter Bui <pnutzh4x0r@gmail.com>
# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
pkgname=offlineimap
pkgver=7.2.2
pkgrel=0
pkgdesc="Synchronizes emails between two repositories"
url="http://www.offlineimap.org"
arch="noarch"
license="GPL-2.0-or-later"
depends="python2 py2-six"
makedepends="python2-dev asciidoc"
install=""
options="!check" # test suite requires credentials for an IMAP and Gmail account
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/OfflineIMAP/${pkgname}/archive/v${pkgver}.tar.gz"
builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$builddir"
python2 setup.py build
cd "$builddir"/docs
make man
}
package() {
cd "$builddir"
python2 setup.py install --root="${pkgdir}" \
--optimize=1
for man in docs/*.?; do
install -Dm644 "$man" \
"$pkgdir"/usr/share/man/man${man##*.}/${man##*/}
done
mkdir -p "$pkgdir"/usr/share/doc/$pkgname/examples/
install -m644 README.md TODO.rst MAINTAINERS.rst Changelog.md \
"$pkgdir"/usr/share/doc/$pkgname/
install -m644 offlineimap.conf* \
"$pkgdir"/usr/share/doc/$pkgname/examples/
}
sha512sums="de60472d24368ff4f5c43ecb50b021c671e6fe713220475da8bd900de6bfb6a10ec8c585f96f6091caea32344f65886e2870d097974ebef343b0ca56a81ddd7c offlineimap-7.2.2.tar.gz"
|