# Maintainer: AlphaJack pkgname="roundcubemail-plugin-carddav" pkgver=4.1.2 pkgrel=1 pkgdesc="CardDAV plugin for RoundCube Webmailer" url="https://github.com/mstilkerich/rcmcarddav" license=("GPL2") arch=("any") conflicts=("roundcube-rcmcarddav" "roundcube-rcmcarddav-git" "roundcubemail-plugin-carddav-git") replaces=("roundcube-rcmcarddav") depends=("roundcubemail") makedepends=("composer" "systemd") source=("$url/releases/download/v$pkgver/carddav-v$pkgver.tar.gz") sha256sums=("3ccdc427f57786c6d62936f9931256388003f811ab851455af24920119d598df") backup=("etc/webapps/roundcubemail/plugins/carddav/config.inc.php") build(){ cd "carddav" composer install --no-interaction --no-dev } package(){ cd "carddav" install -d "$pkgdir/usr/share/webapps/roundcubemail/plugins/carddav" cp -r * "$pkgdir/usr/share/webapps/roundcubemail/plugins/carddav" install -D -m 640 -o root -g http "config.inc.php.dist" "$pkgdir/etc/webapps/roundcubemail/plugins/carddav/config.inc.php" ln -s "/etc/webapps/roundcubemail/plugins/carddav/config.inc.php" "$pkgdir/usr/share/webapps/roundcubemail/plugins/carddav/config.inc.php" }