blob: cfaa43b6225e0b45502aba636999068cd7c77ae7 (
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
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit unpacker xdg
DESCRIPTION="A beautiful, fast and fully open source mail client for Mac, Windows and Linux"
HOMEPAGE="https://getmailspring.com/"
SRC_URI="https://github.com/Foundry376/Mailspring/releases/download/${PV}/mailspring-${PV}-amd64.deb"
S="${WORKDIR}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
app-crypt/libsecret
app-crypt/mit-krb5
app-text/tidy-html5
dev-cpp/ctemplate
dev-libs/cyrus-sasl
dev-libs/libgcrypt
dev-libs/nss
dev-libs/openssl
dev-libs/openssl-compat
gnome-base/gconf
media-libs/alsa-lib
media-libs/libglvnd
net-dns/c-ares
net-print/cups
sys-devel/libtool
sys-libs/db
virtual/udev
=x11-libs/gtk+-3*
x11-libs/libnotify
x11-libs/libxkbfile
x11-libs/libXtst
x11-libs/libXScrnSaver
x11-misc/xdg-utils
|| ( =dev-libs/glib-2* gnome-base/gvfs )
"
QA_PREBUILT="*"
src_unpack(){
unpack_deb ${A}
}
src_install(){
cp -R "${S}"/* "${D}" || die "Installing binary files failed"
mv "${D}/usr/share/doc/mailspring" "${D}/usr/share/doc/${PF}" || die
mv "${D}/usr/share/appdata" "${D}/usr/share/metainfo" || die
}
|