summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9b1c909fed658f75f2e12a5a17676d4637b5fb4b (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
# Maintainer: A Frederick Christensen <aur at ivories d.ot org>
# Contributor: 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' 'glib2-devel')
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"
}