26 lines
503 B
Bash
26 lines
503 B
Bash
# Copyright 2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="Quotes from Frank Herbert's Dune Chronicles"
|
|
HOMEPAGE="https://git.incorporeal.org/bss/fortune-mod-dune"
|
|
EGIT_REPO_URI="https://git.incorporeal.org/bss/fortune-mod-dune.git"
|
|
SRC_URI=""
|
|
|
|
LICENSE="fairuse"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
IUSE=""
|
|
|
|
DEPEND="games-misc/fortune-mod"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=""
|
|
|
|
src_install() {
|
|
insinto /usr/share/fortune
|
|
doins *
|
|
}
|