PKGBUILDs/extra/claws-mail/PKGBUILD

79 lines
2.9 KiB
Bash
Raw Normal View History

2013-05-11 15:51:39 +00:00
# $Id$
2011-03-29 01:21:11 +00:00
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
2011-12-09 15:53:24 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2011-03-29 01:21:11 +00:00
# - removed valgrind from makedepends
pkgname=claws-mail
2013-06-10 14:35:15 +00:00
pkgver=3.9.2
2013-08-19 18:14:17 +00:00
pkgrel=3
2011-03-29 01:21:11 +00:00
pkgdesc="A GTK+ based e-mail client."
arch=('i686' 'x86_64')
license=('GPL3')
url="http://www.claws-mail.org"
2011-04-12 00:51:45 +00:00
depends=('gtk2' 'gnutls' 'startup-notification' 'pilot-link' 'enchant'
2013-08-19 18:14:17 +00:00
'gpgme' 'libetpan>=1.1-4' 'libsm' 'dbus-glib' 'hicolor-icon-theme' 'desktop-file-utils')
2013-05-11 15:51:39 +00:00
makedepends=('compface' 'spamassassin' 'bogofilter'
# dependencies for plugins
'libsoup' 'libgdata' 'webkitgtk2' 'libnotify' 'libcanberra' 'poppler-glib' 'pygtk')
#'libchamplain' needed for geolocation plugin, disabled for now - most time it's not compatible with current gnome releases
optdepends=('python2: needed for some tools and python plugin'
'perl: needed for some tools and perl plugin'
2011-03-29 01:21:11 +00:00
'spamassassin: adds support for spamfiltering'
2013-05-11 15:51:39 +00:00
'bogofilter: adds support for spamfiltering'
'libnotify: for notification plugin'
'libcanberra: for notification plugin'
2013-05-15 14:28:44 +00:00
'dbus: for notification plugin'
2013-05-11 15:51:39 +00:00
'libxml2: for gtkhtml2_viewer and rssyl plugins'
'curl: for gtkhtml2_viewer, vcalendar, rssyl and spamreport plugins'
'libarchive: for archive plugin and various other plugins'
'libytnef: for tnef_parse plugin'
'webkitgtk2: for the fancy webkit html plugin'
'libsoup: for the fancy webkit html plugin'
'libgdata: for gdata plugin'
'poppler-glib: for pdf viewer plugin'
'ghostscript: for pdf viewer plugin')
replaces=('sylpheed-claws' 'claws-mail-extra-plugins')
conflicts=('claws-mail-extra-plugins')
2011-03-29 01:21:11 +00:00
provides=('claws')
options=(!libtool)
install=claws-mail.install
2013-05-26 17:50:03 +00:00
source=(http://downloads.sourceforge.net/sourceforge/sylpheed-claws/${pkgname}-${pkgver}.tar.bz2{,.asc})
2013-06-10 14:35:15 +00:00
md5sums=('90de2a265e65fbd9dffdbf428bb0ee28'
2013-05-26 17:50:03 +00:00
'SKIP')
2011-03-29 01:21:11 +00:00
build() {
cd ${srcdir}/${pkgname}-${pkgver}
2012-10-14 16:20:06 +00:00
2013-05-11 15:51:39 +00:00
# fixes for python2
export PYTHON="/usr/bin/python2"
2011-03-29 01:21:11 +00:00
sed -i 's@^#!.*python.*@#!/usr/bin/python2@' tools/*.py
2013-05-11 15:51:39 +00:00
sed -i 's:python -c:python2 -c:g' configure
2011-03-29 01:21:11 +00:00
./configure --prefix=/usr --disable-static \
--enable-enchant \
--enable-gnutls \
--enable-ldap \
--enable-crash-dialog \
--enable-pgpmime-plugin \
--enable-spamassassin-plugin \
--enable-bogofilter-plugin \
2013-05-11 15:51:39 +00:00
--enable-jpilot \
#--help
2011-03-29 01:21:11 +00:00
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
# build and install extra tools
cd tools
make
# all executables and .conf files ; only top directory
find -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
}