# Maintainer: AlphaJack pkgname="roundcubemail-plugin-carddav" pkgver=4.1.0 pkgrel=2 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=("646fab4d8cb1301a958855dfc9ed843496c1c2d44e43d764d8da52c1ae8ef323") 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 644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" 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" }