diff options
-rw-r--r-- | mail-client/mailspring/Manifest | 1 | ||||
-rw-r--r-- | mail-client/mailspring/mailspring-1.8.0.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/mail-client/mailspring/Manifest b/mail-client/mailspring/Manifest new file mode 100644 index 00000000..89348073 --- /dev/null +++ b/mail-client/mailspring/Manifest @@ -0,0 +1 @@ +DIST mailspring-1.8.0-amd64.deb 79747546 BLAKE2B ed47adc692455324d0a8ce13d6f5a54cacd64c40112192df5ff0dcfab47815eabc3c3964e588af4443dc863f1b53fc08f001fdadf6340017900a1bed40d8a9ab SHA512 e487a6eed6e5e1bbcece3f85fa3cf32d24e257f73d77b0170f2b970496d3d710a529d28d8b035bb6589d450fde7c2324de59bfa17c8502fc317d5250368fbbec diff --git a/mail-client/mailspring/mailspring-1.8.0.ebuild b/mail-client/mailspring/mailspring-1.8.0.ebuild new file mode 100644 index 00000000..6bca9b50 --- /dev/null +++ b/mail-client/mailspring/mailspring-1.8.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 2016-2021 Redcore Linux Project +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils unpacker + +DESCRIPTION="A beautiful fast and maintained fork of Nylas Mail" +HOMEPAGE="https://getmailspring.com/" +SRC_URI="https://github.com/Foundry376/Mailspring/releases/download/${PV}/${P}-amd64.deb" + +LICENSE="GPL3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + app-crypt/libsecret + app-text/tidy-html5 + dev-cpp/ctemplate + dev-libs/nss + dev-libs/openssl-compat:1.0.0 + media-libs/alsa-lib + net-libs/c-ares + sys-libs/db:5.3 + x11-libs/gtk+:3 + x11-libs/libxkbfile + x11-libs/libXtst + x11-libs/libnotify" +RDEPEND="${DEPEND}" + +RESTRICT="mirror strip" + +S="${WORKDIR}" + +src_unpack() { + unpack_deb ${A} +} + +src_install() { + rm -rf ${S}/usr/share/doc || die + cp -R ${S}/* "${D}" || die +} |