diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-02-27 23:05:09 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-02-27 23:05:09 +0000 |
commit | 30d5d1966be830d6ed590044eada6c58679cb195 (patch) | |
tree | f429a8d242b32d119afc7351e71554416c6b101c /mail-client/wmail | |
parent | f3e761d04babd2c677faec041a0c952c6edfc58b (diff) |
add wmail
Diffstat (limited to 'mail-client/wmail')
-rw-r--r-- | mail-client/wmail/Manifest | 1 | ||||
-rw-r--r-- | mail-client/wmail/wmail-2.2.0.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/mail-client/wmail/Manifest b/mail-client/wmail/Manifest new file mode 100644 index 00000000..b78bc436 --- /dev/null +++ b/mail-client/wmail/Manifest @@ -0,0 +1 @@ +DIST WMail_2_2_0_linux_x86_64.deb 55629674 SHA256 d2e447f7e87efd499779554e35b9788309e5c461be1cbac98aca690a0a364e14 SHA512 1c4f015feddfb720071e6b291e5c9f931ecdefe41a06165c6d616f439e0132a45b6fe737bfd6f6e9c947c8d0def91e1b552c7740c44020f1b434080414796ea1 WHIRLPOOL a9634aa3e907bee4405507b0424af4a912b59df2afb7f5b6ab73dc64518081ea729a7e1bcf0280b2e95bf92d0e12b598022176a0a98ebe8dc5b3d80946d24854 diff --git a/mail-client/wmail/wmail-2.2.0.ebuild b/mail-client/wmail/wmail-2.2.0.ebuild new file mode 100644 index 00000000..8c62d51d --- /dev/null +++ b/mail-client/wmail/wmail-2.2.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils unpacker + +DESCRIPTION="The missing desktop client for Gmail & Google Inbox" +HOMEPAGE="https://github.com/Thomas101/wmail" +SRC_URI="https://github.com/Thomas101/wmail/releases/download/v${PV}/WMail_2_2_0_linux_x86_64.deb" + +LICENSE="GPL2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +DEPEND="dev-libs/nss + gnome-base/gconf + media-libs/alsa-lib + sys-apps/lsb-release + x11-libs/gtk+:2 + x11-libs/libXtst + x11-libs/libnotify" +RDEPEND="${DEPEND}" + +RESTRICT="mirror" + +S="${WORKDIR}" + +src_unpack() { + unpack_deb ${A} +} + +src_install() { + mv * "${D}" || die +} |