23 lines
595 B
Bash
23 lines
595 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools xdg-utils
|
|
|
|
DESCRIPTION="High-performance implementation of games-misc/lolcat"
|
|
HOMEPAGE="https://github.com/jaseg/lolcat"
|
|
SRC_URI="https://github.com/jaseg/lolcat/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
|
|
|
|
LICENSE="WTFPL-2"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
DEPEND="!games-misc/lolcat"
|
|
|
|
S="${WORKDIR}/lolcat-${PV}"
|
|
|
|
src_install() {
|
|
dobin lolcat
|
|
}
|