2020-02-23 10:19:19 -06:00
|
|
|
# Copyright 2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit git-r3
|
|
|
|
|
|
|
|
DESCRIPTION="Console version of the game 2048"
|
|
|
|
HOMEPAGE="https://github.com/mevdschee/2048.c"
|
2020-02-23 10:32:34 -06:00
|
|
|
EGIT_REPO_URI="https://github.com/mevdschee/2048.c.git"
|
2020-02-23 10:19:19 -06:00
|
|
|
SRC_URI=""
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND=""
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
insinto /usr/bin
|
|
|
|
dobin 2048
|
|
|
|
}
|