blob: ad50df248de3ed12158d32746629268b8d1227f0 (
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
|
# $Id$
# Contributor (Arch): tang francescoallara.it
# Maintainer : Parabola Aurélien Desbrières <aurelien@hackers.guru>
pkgname=roundcube-carddav
pkgver=git
pkgrel=1
pkgdesc="This plugin allows users to export their contacts via CardDAV"
arch=('any')
url="http://www.graviox.de/"
license=('GPL')
depends=('roundcubemail>=0.9.0')
makedepends=('git')
source=(https://github.com/graviox/Roundcube-CardDAV.git)
package() {
_instdir=${pkgdir}/usr/share/webapps/roundcubemail/plugins/carddav
git clone ${source} ${_instdir}
install -dm755 ${_instdir}
# fix all the 644 perms on files
find ${_instdir} -type f -exec chmod 644 {} \;
}
md5sums=('a7c2e71f5d7a0d36c6682be6ff3413bd')
|