tastytea
fdf446e1de
Some checks failed
continuous-integration/drone/push Build is failing
Package-Manager: Portage-2.3.69, Repoman-2.3.16 Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
27 lines
666 B
Bash
27 lines
666 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Factorio is a game in which you build and maintain factories."
|
|
HOMEPAGE="https://www.factorio.com/"
|
|
SRC_URI="https://www.factorio.com/get-download/${PV}/headless/linux64 -> ${P}.tar.xz"
|
|
LICENSE="Factorio"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
RDEPEND=">=app-misc/screen-4.6.1"
|
|
DEPEND=""
|
|
|
|
S="${WORKDIR}/factorio"
|
|
|
|
src_install() {
|
|
insinto /opt/factorio
|
|
doins -r data
|
|
doins config-path.cfg
|
|
exeinto /opt/factorio/bin/x64
|
|
doexe bin/x64/factorio
|
|
newinitd "${FILESDIR}"/factorio.initd factorio
|
|
newconfd "${FILESDIR}"/factorio.confd factorio
|
|
}
|