summaryrefslogtreecommitdiffstats
path: root/main/claws-mail/APKBUILD
blob: ce30631ee956afb00f34d03f86f0e26551d78a12 (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
45
46
47
48
49
50
51
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=claws-mail
pkgver=3.7.9
pkgrel=0
pkgdesc="A GTK+ based e-mail client."
url="http://www.claws-mail.org"
arch="all"
license="GPL3"
subpackages="$pkgname-dev $pkgname-doc"
makedepends="gtk+-dev openssl-dev startup-notification-dev enchant-dev
	libsm-dev gnutls-dev curl-dev dbus-glib-dev libetpan-dev openldap-dev"
depends=
#	gpgme-dev libetpan-dev 
#pilot-link>=0.12.3-5
install= #claws-mail.install
source="http://downloads.sourceforge.net/sourceforge/sylpheed-claws/$pkgname-$pkgver.tar.bz2
	libc-version.patch"

_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
	cd "$_builddir"
	patch -p1 -i ../libc-version.patch || return 1
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--disable-static \
		--enable-enchant \
		--enable-gnutls \
		--enable-ldap \
		--disable-dillo-viewer-plugin \
		--enable-crash-dialog \
		--enable-pgpmime-plugin \
		--enable-spamassassin-plugin \
		--enable-bogofilter-plugin \
		--disable-jpilot
	make || return 1
	cd tools
	make
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install
	find tools -maxdepth 1 -type f -and -perm /111 -or -name '*.conf' | while read i; do
		install -D -m755 ${i} "$pkgdir"/usr/lib/claws-mail/tools/${i}
	done
}
md5sums="2f9d2dcabf84e312cfeb56efa799b5b3  claws-mail-3.7.9.tar.bz2
f3416743b5d8ff97b5a3cc2f7efc2dc1  libc-version.patch"