blob: e7843086cbec04887eedc583e634520c95fb67d5 (
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
|
# Maintainer: Deon Spengler <deon at spengler dot co dot 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=4.2.0
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=("http://www.sogo.nu/files/downloads/SOGo/Sources/SOPE-${pkgver}.tar.gz"
"sope_configure.patch")
sha256sums=('31add5ac353d7edd4ee8f8d12c3c5f7c86a43100b7252985d9503c38230f7ffa'
'7ff3387daffd15b5f97146da1fd61aefc9591b7b6a41f1f0e60b572106fdbc9a')
prepare() {
cd "${srcdir}/SOPE"
patch configure ../sope_configure.patch
}
build() {
cd "${srcdir}/SOPE"
./configure --with-gnustep --disable-strip --disable-debug
make
}
package() {
cd "${srcdir}/SOPE"
make install DESTDIR="${pkgdir}"
}
|