blob: 3cbdbcaa807c9e98ddcbf91d3ce90c639b606ae3 (
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
|
# Maintainer: Einar Lielmanis <einar@spicausis.lv>
pkgname=sylpheed-beta
pkgver=3.8.0beta1
pkgrel=1
pkgdesc="Lightweight and user-friendly e-mail client. Latest official beta version."
arch=('i686' 'x86_64')
url="http://sylpheed.sraoss.jp/en/"
license=('GPL')
depends=('gpgme' 'gtk2' 'compface' 'gtkspell')
options=('libtool')
conflicts=('sylpheed' 'sylpheed-beta-iconmod')
provides=('sylpheed')
source=(
http://sylpheed.sraoss.jp/sylpheed/v3.8beta/sylpheed-$pkgver.tar.bz2{,.asc}
ssl-sni-support.patch
)
build() {
cd "$srcdir/sylpheed-$pkgver"
#cd "$srcdir/sylpheed-3.5.1" # RC paths
# fix enchant maintainers moving things around for fun
sed -i 's:enchant/enchant.h:enchant-2/enchant.h:g' src/compose.c
sed -i 's:PKG_CONFIG --libs enchant:PKG_CONFIG --libs enchant-2:g' configure.ac
patch -p1 < "$srcdir/ssl-sni-support.patch"
autoconf
./configure --prefix=/usr --enable-ldap --enable-gpgme
make
}
package() {
cd "$srcdir/sylpheed-$pkgver"
#cd "$srcdir/sylpheed-3.5.1" # RC paths
make DESTDIR="$pkgdir" install
}
validpgpkeys=('8CF3A5AC417ADE72B0AA4A835024337CC00C2E26')
md5sums=('7496ab4614695831f9d041e4ed7ab23e'
'SKIP'
'b05b75bb2bd46d4022f920e09e0b1923')
|