blob: d07722c1236c753cddd7315646ef6c31ab5eafa6 (
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
|
# Maintainer: Justus Piater <Justus-dev at Piater dot name>
pkgname=('syncevolution')
pkgver=2.0.0
pkgrel=1
pkgdesc="Synchronize PIM data via various protocols"
arch=('x86_64' 'aarch64')
url="https://syncevolution.org/"
license=('LGPL')
depends=('evolution-data-server' 'libgnome-keyring' 'neon' 'python' 'python-pygments')
makedepends=('intltool' 'boost')
source=("https://downloads.syncevolution.org/syncevolution/sources/syncevolution-2.0.0.tar.gz")
sha256sums=('2c5912e6b9a5064710deb8bf059e5058eae26114f6065de79be586ac4c89513e')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr \
--libexecdir=/usr/lib/syncevolution \
--sysconfdir=/etc \
--enable-core \
--enable-dbus-service \
--enable-notify \
--enable-notify-compatibility \
--enable-gui \
--enable-pbap \
--enable-dav
make
}
package_syncevolution() {
cd "$pkgbase-$pkgver"
make DESTDIR="$pkgdir/" install
rm -df "$pkgdir/usr/bin/syncevo-http-server" \
"$pkgdir/usr/lib/syncevolution/test"
}
|