diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-02-07 22:35:32 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-02-07 22:35:32 -0200 |
commit | cd33b4d3fb678ab356ae86e49212fd3b0c1f7f3d (patch) | |
tree | 2db2873a23fed1a49b4cdb76b8f14fd6820f38ea | |
parent | 515b43cfeaf303e3bf0532e3bafa5cd17efd75ee (diff) | |
parent | 02b8834a3b334793fe0722331078c883f3457c15 (diff) |
Merge branch 'master' of ssh://projects.parabolagnulinux.org:1863/srv/git/abslibre
-rw-r--r-- | pcr/owncloud-app-roundcube/PKGBUILD | 20 | ||||
-rw-r--r-- | pcr/roundcube-carddav/PKGBUILD | 24 | ||||
-rw-r--r-- | pcr/roundcube-rcguard-plugin-git/PKGBUILD | 32 | ||||
-rw-r--r-- | pcr/youtube-dl-current/PKGBUILD | 4 |
4 files changed, 78 insertions, 2 deletions
diff --git a/pcr/owncloud-app-roundcube/PKGBUILD b/pcr/owncloud-app-roundcube/PKGBUILD new file mode 100644 index 000000000..050925d8c --- /dev/null +++ b/pcr/owncloud-app-roundcube/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $ +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer : Parabola Aurélien Desbrières <aurelien@hackers.guru> + +pkgname=owncloud-app-roundcube +pkgver=1.3.1 +pkgrel=1 +pkgdesc="Roundcubemail integration for owncloud" +arch=('any') +url="http://apps.owncloud.com/content/show.php/?content=151523" +license=('GPL') +depends=('owncloud') +makedepends=() +options=('!strip') +source=("https://github.com/hypery2k/owncloud/releases/download/v$pkgver/roundcube.zip") + +package() { + install -d ${pkgdir}/usr/share/webapps/owncloud/apps + cp -a ${srcdir}/roundcube ${pkgdir}/usr/share/webapps/owncloud/apps/roundcube +} diff --git a/pcr/roundcube-carddav/PKGBUILD b/pcr/roundcube-carddav/PKGBUILD new file mode 100644 index 000000000..840834106 --- /dev/null +++ b/pcr/roundcube-carddav/PKGBUILD @@ -0,0 +1,24 @@ +# $Id$ +# Contributor: 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') diff --git a/pcr/roundcube-rcguard-plugin-git/PKGBUILD b/pcr/roundcube-rcguard-plugin-git/PKGBUILD new file mode 100644 index 000000000..d19298af7 --- /dev/null +++ b/pcr/roundcube-rcguard-plugin-git/PKGBUILD @@ -0,0 +1,32 @@ +# Contributor: 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 {} \; +} diff --git a/pcr/youtube-dl-current/PKGBUILD b/pcr/youtube-dl-current/PKGBUILD index 7e25e0295..1b8369e74 100644 --- a/pcr/youtube-dl-current/PKGBUILD +++ b/pcr/youtube-dl-current/PKGBUILD @@ -5,7 +5,7 @@ pkgname=youtube-dl-current _pkgname=youtube-dl provides=(youtube-dl) -pkgver=2014.01.30.2 +pkgver=2014.02.06.3 pkgrel=1 pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites" arch=('any') @@ -28,5 +28,5 @@ package() { "${pkgdir}/usr/share/bash-completion/completions/youtube-dl" install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE" } -md5sums=('4a6dded4aff1a43b2492de38f8ea1ed3' +md5sums=('108a8d8b2d20890d6705b64a6414a920' 'SKIP') |