blob: 77344fd524a223f5a4a34e8eee884541a860b905 (
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
|
# Maintainer: Deon Spengler <deon@spengler.co.za>
# Contributor: DJ Lucas <dj_AT_linuxfromscratch_DOT_org>
# Contributor: Steven Hiscocks <steven [at] hiscocks [dot] me [dot] uk>
# Contributor: Andre Wayand <aur-sope@awayand.sleepmail.com>
pkgname=sope
pkgdesc="application server used by SOGo"
pkgver=5.12.1
pkgrel=1
arch=(x86_64)
url="http://www.sogo.nu/files/downloads/SOGo/Sources/"
license=('GPL')
options=('!strip')
replaces=('sope2')
depends=('gnustep-base')
makedepends=('gcc-objc'
'gnustep-make'
'libxml2'
'libmariadbclient'
'libldap'
'openssl'
'postgresql-libs')
optdepends=('libxml2: parse XML coniguration files'
'mariadb: run database server for sogo locally'
'openldap: run directory server for sogo locally'
'openssl: create SSL secured connectons'
'postgresql: run database server for sogo locally')
source=("https://packages.sogo.nu/sources/SOPE-${pkgver}.tar.gz")
sha512sums=('192ae8c38d42e1af266e566cd20f3f45ca04768ed4bc4cb9cc179a5a8cafd48da5cfc2c16c0648d73896851c3efa126c10bc440e9be8bf6dc05a0b59ef9a592f')
prepare() {
cd SOPE
sed 's@NSBIG5StringEncoding@NSBig5StringEncoding@g' -i sope-mime/NGMime/NGMimeType.m
sed 's@NSGB2312StringEncoding@NSHZ_GB_2312StringEncoding@g' -i sope-mime/NGMime/NGMimeType.m
}
build() {
cd SOPE
./configure --with-gnustep --disable-strip --disable-debug
make
}
package() {
cd SOPE
make install DESTDIR="${pkgdir}"
}
|