blob: d171f864c24b52e4b3d515ddea8da41e99764371 (
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
|
# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A system for automatically configuring mutt and isync"
HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
COMMIT=7c980ec6fbc4e51f3fa663a541de4ff5a4f6587f
SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${PN}-${COMMIT}"
LICENSE="GPL-3"
SLOT="0"
IUSE="+notmuch +lynx"
RDEPEND="
mail-client/neomutt:=[notmuch=]
net-mail/isync:=[ssl]
mail-mta/msmtp
app-admin/pass
lynx? ( www-client/lynx )
"
# needed because there is no 'all' target defined in MAKEFILE
src_compile() {
return 0;
}
src_install() {
# Do not install to /usr/local
PREFIX="/usr" default
}
|