blob: 73dd9a564e5b15171fc9b5f1103e46f3ca9e13bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Unix utilities to deal with Maildir"
HOMEPAGE="https://git.vuxu.org/mblaze/"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.vuxu.org/mblaze"
else
SRC_URI="https://git.vuxu.org/mblaze/snapshot/${P}.tar.gz"
KEYWORDS="amd64 x86"
fi
RESTRICT="mirror"
LICENSE="public-domain"
SLOT="0"
src_install() {
emake PREFIX="${D}/usr" install
}
|