aboutsummaryrefslogtreecommitdiffstats
path: root/community/offlineimap/APKBUILD
blob: 7123209d0085ccb0126553307a23770a14c0cc31 (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.4
pkgrel=2
pkgdesc="Synchronizes emails between two repositories"
url="http://www.offlineimap.org"
arch="noarch"
license="GPL2+"
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="f2623a400de2fac339249f887529e1f02224ba40c5f739b4084b5b26d1f8b6f26faf2c248aeaecd48dd7f6cc27bdaa8b7691c10f3db3b9673a1a5338f435447c  offlineimap-7.1.4.tar.gz"