blob: 58af497466d38be70143ff17c99b6a39d126cb3b (
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
52
53
54
55
56
57
58
59
|
# Maintainer: (Arch) David Runge <dave@sleepmap.de>
# Contributor (Arch): speps <speps at aur dot archlinux dot org>
# Contributor (Arch): Alexander Fehr <pizzapunk gmail com>
# Contributor (Arch): dorphell <dorphell@archlinux.org>
# Contributor: Andreas Grapentin <andreas@grapentin.org>
# Contributor: André Silva <emulatorman@hyperbola.info>
# Contributor: Aditya Som <icarious@hacari.org>"
# parabola changes and rationale:
# - removed gmail support
pkgname=sylpheed
pkgver=3.7.0
pkgrel=3.nonprism1
pkgdesc="Lightweight and user-friendly e-mail client, without Gmail support"
arch=('x86_64' 'i686' 'armv7h')
url="https://sylpheed.sraoss.jp/en/"
license=('GPL')
depends=('compface' 'gpgme' 'gtkspell' 'libnsl')
makedepends=('openssl')
source=("https://sylpheed.sraoss.jp/$pkgname/v${pkgver%.*}/$pkgname-$pkgver.tar.bz2"
"Support-SNI-some-servers-imap.gmail.patch::https://sylpheed.sraoss.jp/redmine/attachments/download/145/v2-0001-libsylph-ssl.c-Support-SNI-some-servers-imap.gmai.patch"
"nonprism.patch")
sha256sums=('eb23e6bda2c02095dfb0130668cf7c75d1f256904e3a7337815b4da5cb72eb04'
'2c622fa0d110d5745925d3a265d7dd953679d335f85a3ed3d1dcc699d9575d89'
'1e68cc016d7a62b171bb306169b24130fe20bf3cdfe2ff67ecc95e10a623098d')
prepare() {
cd "$pkgname-$pkgver"
# patch for enchant >= 2.1.3
# https://www.archlinux.org/todo/enchant-221-rebuild/
sed -i 's,enchant/,enchant-2/,g' src/compose.c
sed -i 's/ enchant/ enchant-2/g' configure
# https://sylpheed.sraoss.jp/redmine/issues/306
patch -p1 < "$srcdir"/Support-SNI-some-servers-imap.gmail.patch
# Remove Gmail support
patch -Np1 -i "$srcdir/nonprism.patch"
}
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr \
--enable-maintainer-mode \
--enable-ldap
make
# Build Attachment-Tool Plug-in
cd plugin/attachment_tool && make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" LDFLAGS+="/usr/lib/enchant-2" install
# Install Attachment-Tool Plug-in
cd plugin/attachment_tool
make DESTDIR="$pkgdir/" install-plugin
}
|