blob: 08b0b3c13beaa3a3b548487c1e17a98cff4d2d1a (
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
|
# $Id: PKGBUILD 79630 2012-11-09 11:59:02Z speps $
# Maintainer: speps <speps at aur dot archlinux dot org>
# Contributor: Alexander Fehr <pizzapunk gmail com>
# Contributor: dorphell <dorphell@archlinux.org>
# Maintainer (Parabola): André Silva <emulatorman@parabola.nu>
# Contributor (Parabola): Aditya Som <icarious@hacari.org>"
_pkgname=sylpheed
pkgname=sylpheed-nonprism
pkgver=3.3.0
pkgrel=1.1
pkgdesc="Lightweight and user-friendly e-mail client, without Gmail support"
arch=('i686' 'x86_64')
url="http://sylpheed.sraoss.jp/en/"
license=('GPL')
depends=('gpgme' 'gtkspell' 'desktop-file-utils' 'compface')
makedepends=('openssl')
options=('!libtool')
replaces=$_pkgname
conflicts=$_pkgname
provides=$_pkgname=$pkgver
install="$_pkgname.install"
source=("http://sylpheed.sraoss.jp/$_pkgname/v3.3/$_pkgname-$pkgver.tar.bz2"
'nonprism.patch')
md5sums=('20442f81dbb4e7c59462360ad0bb1afb'
'e1bddc14962e607cdb899ec082660639')
prepare() {
cd "$srcdir/$_pkgname-$pkgver"
# Remove Gmail support
patch -Np1 -i "$srcdir/nonprism.patch"
}
build() {
cd "$srcdir/$_pkgname-$pkgver"
./configure --prefix=/usr \
--enable-ldap
make
# Build Attachment-Tool Plug-in
cd plugin/attachment_tool && make
}
package() {
cd "$srcdir/$_pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
# Install Attachment-Tool Plug-in
cd plugin/attachment_tool
make DESTDIR="$pkgdir/" install-plugin
}
|