From 8b667fcfd05b9f0e585c2a12e61ef67b00573582 Mon Sep 17 00:00:00 2001 From: Javier Torres Date: Tue, 9 Jun 2015 17:11:59 +0200 Subject: [PATCH] Initial import --- .SRCINFO | 13 +++++++++++++ PKGBUILD | 18 ++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..5152923 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = roundcubemail-plugin-contextmenu + pkgdesc = Contextmenus for various parts of Roundcube using commands from the toolbars + pkgver = 2.1 + pkgrel = 1 + url = https://github.com/JohnDoh/Roundcube-Plugin-Context-Menu + arch = any + license = GPL3 + depends = roundcubemail + source = https://github.com/JohnDoh/Roundcube-Plugin-Context-Menu/archive/2.1.tar.gz + sha256sums = 6ef36e01a34c219a3a5e78e7bc9f5fd89c7a75e69d590b06e7f9e0bf3d4746f5 + +pkgname = roundcubemail-plugin-contextmenu + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..5383561 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +# Maintainer: Javier Torres + +pkgname=roundcubemail-plugin-contextmenu +pkgver=2.1 +pkgrel=1 +pkgdesc=('Contextmenus for various parts of Roundcube using commands from the toolbars') +arch=('any') +url='https://github.com/JohnDoh/Roundcube-Plugin-Context-Menu' +license=('GPL3') +depends=('roundcubemail') +source=("https://github.com/JohnDoh/Roundcube-Plugin-Context-Menu/archive/${pkgver}.tar.gz") +sha256sums=('6ef36e01a34c219a3a5e78e7bc9f5fd89c7a75e69d590b06e7f9e0bf3d4746f5') + +package() { + mkdir -p "${pkgdir}/usr/share/webapps/roundcubemail/plugins" + cp -r "${srcdir}/Roundcube-Plugin-Context-Menu-${pkgver}" "${pkgdir}/usr/share/webapps/roundcubemail/plugins/contextmenu" +} +