blob: 8132daf920554eb679fe43e60797bce7a67ccd8e (
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
|
# Contributor (Arch): achterin
# Maintainer : Parabola Aurélien Desbrières <aurelien@hackers.guru>
pkgname=roundcube-rcguard-plugin-git
_gitname=rcguard
pkgver=47.baadec2
pkgrel=1
pkgdesc="Roundcube plugin that enforces reCAPTCHA for users that have too many failed logins"
arch=('any')
url="https://github.com/dennylin93/rcguard"
license=('BSD')
depends=('roundcubemail>=0.9.0')
makedepends=('git')
optdepends=('mysql'
'sqlite'
'postgresql')
source=(git+https://github.com/dennylin93/rcguard.git)
pkgver() {
cd $_gitname
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
package() {
_instdir=${pkgdir}/usr/share/webapps/roundcubemail/plugins
install -dm755 ${_instdir}
rm -r ${srcdir}/rcguard/.git
cp -r ${srcdir}/rcguard ${_instdir}
# fix all the 644 perms on files
find ${_instdir} -type f -exec chmod 644 {} \;
}
|