aboutsummaryrefslogtreecommitdiffstats
path: root/main/offlineimap/APKBUILD
blob: e349a42e85402be8fd49849e7b341deedb526a29 (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: Peter Bui <pnutzh4x0r@gmail.com>
pkgname=offlineimap
pkgver=7.1.0
pkgrel=0
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"
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="9e9d5ea2b58dc212c9b69adb701fb4cd1ac1a7c8af90623dcfba3115ee7e1f63cc8569c352bae8f1fe09eb8c9255c39d0bf947dfb5d683ee4b03c0c822cb192d  offlineimap-7.1.0.tar.gz"