summaryrefslogtreecommitdiff
path: root/nonprism/sylpheed/PKGBUILD
blob: d0d07a1c8ff45029cc776dc69ceaa956efc0eae1 (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
# $Id: PKGBUILD 189828 2016-09-17 09:47:04Z arojas $
# Maintainer (Arch): speps <speps at aur dot archlinux dot org>
# Contributor (Arch): Alexander Fehr <pizzapunk gmail com>
# Contributor (Arch): dorphell <dorphell@archlinux.org>
# Maintainer: André Silva <emulatorman@parabola.nu>
# Contributor: Aditya Som <icarious@hacari.org>"

pkgname=sylpheed
pkgver=3.5.1
pkgrel=1.nonprism1
pkgdesc="Lightweight and user-friendly e-mail client, without Gmail support"
arch=('i686' 'x86_64')
url="http://sylpheed.sraoss.jp/en/"
license=('GPL')
replaces=(${pkgname}-nonprism)
conflicts=(${pkgname}-nonprism)
depends=('compface' 'gpgme' 'gtkspell')
makedepends=('openssl')
source=("http://sylpheed.sraoss.jp/$pkgname/v${pkgver%.*}/$pkgname-$pkgver.tar.bz2"
        'nonprism.patch')
md5sums=('d88e892b54b160209c8183ebe2574490'
         'e1bddc14962e607cdb899ec082660639')

prepare() {
  cd $pkgname-$pkgver

  # Remove Gmail support
  patch -Np1 -i "$srcdir/nonprism.patch"
}

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr \
              --enable-ldap
  make

  # Build Attachment-Tool Plug-in
  cd plugin/attachment_tool && make
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir/" install

  # Install Attachment-Tool Plug-in
  cd plugin/attachment_tool
  make DESTDIR="$pkgdir/" install-plugin
}