blob: 3fa4412a10e01c2b79615e57a41f0b34f03672c6 (
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.11.2
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=('42a74772ef1538660a616131647c2d8cbdeb82a3d6f3125326a97ac8f4523f974eb7c9061659e7400f72674dede808d72e2209d17fa918d0476e412f7f0b63f9')
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}"
}
|