aboutsummaryrefslogtreecommitdiffstats
path: root/community/offlineimap/APKBUILD
blob: ab16191c378bebf327eda9380c3198602388d553 (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.1.5
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="5e49e5e2f13a15f02036860d1622a79a1342c8d3c0ad1c3e56c32a90e9c6e439ed9b9de6b67e36bda19229e28bd17dcb132f093eb19524375b182dde079d6101  offlineimap-7.1.5.tar.gz"