diff options
author | Luca Weiss <luca@z3ntu.xyz> | 2020-04-12 22:02:07 +0200 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2020-04-13 09:55:54 +0000 |
commit | 05167d6701c32d11e285abae85bf25ee19cdac41 (patch) | |
tree | 16cfa80741d8abeef5634daf933dc802f1198bc4 /community/evolution-data-server | |
parent | 3281640128ea2162bb9e850ff7fb701f0e24fa09 (diff) | |
download | aports-05167d6701c32d11e285abae85bf25ee19cdac41.tar.bz2 aports-05167d6701c32d11e285abae85bf25ee19cdac41.tar.xz |
community/evolution-data-server: fix xdg autostart file location
Currently the autostart file gets installed into
/usr/etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop which is
wrong, so fix the location by passing cmake the correct directory.
Diffstat (limited to 'community/evolution-data-server')
-rw-r--r-- | community/evolution-data-server/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/evolution-data-server/APKBUILD b/community/evolution-data-server/APKBUILD index 9fdade40c1..25efbbde18 100644 --- a/community/evolution-data-server/APKBUILD +++ b/community/evolution-data-server/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=evolution-data-server pkgver=3.36.1 -pkgrel=1 +pkgrel=2 pkgdesc="data server for evolution" url="https://projects.gnome.org/evolution" arch="all" @@ -32,6 +32,7 @@ build() { cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=/usr/lib \ + -DSYSCONF_INSTALL_DIR=/etc \ -DCMAKE_BUILD_TYPE=None \ -DENABLE_GOA=ON \ -DENABLE_UOA=OFF \ |