blob: 16be867067e8cf12e445092b7954b3eb9b52e948 (
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
33
34
35
36
37
38
39
40
41
42
43
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-dns/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
}
|