forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
games-puzzle/bff-or-die: New package
Package-Manager: Portage-2.3.103, Repoman-2.3.22 Signed-off-by: James Le Cuirot <[email protected]>
- Loading branch information
Showing
3 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST BffOrDie_Linux.zip 194773335 BLAKE2B a32d6b26e446d84110db13340d527ad1ccc423ddb1dfcdacabaf80c0b326f7c7c3d8315b26cc3a8cf4c403b4943e94cd954c77d01edc1963e4fc3b773a4f1042 SHA512 4767fea4c3a94fcf4ad6ca2a313ba1c10d9e6d0d593a63aa336f90f38599f1c43064f56c3e8fd18615ff08bd01dbc0cabe0bd01a798276075c160143f6102650 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit eutils desktop xdg | ||
|
||
MY_PN="BffOrDie" | ||
DESCRIPTION="Time travelling alien couch co-op puzzle game for 1-4 players" | ||
HOMEPAGE="https://www.bffordie.com/" | ||
SRC_URI="${MY_PN}_Linux.zip" | ||
LICENSE="all-rights-reserved" | ||
SLOT="0" | ||
KEYWORDS="-* ~amd64 ~x86" | ||
RESTRICT="bindist fetch splitdebug" | ||
|
||
RDEPEND=" | ||
sys-libs/zlib | ||
virtual/opengl | ||
" | ||
|
||
BDEPEND=" | ||
app-arch/unzip | ||
" | ||
|
||
S="${WORKDIR}/${MY_PN}_Linux" | ||
|
||
DIR="/opt/${PN}" | ||
QA_PREBUILT="${DIR#/}/*" | ||
|
||
pkg_nofetch() { | ||
einfo "Please buy and download ${SRC_URI} from:" | ||
einfo " https://asa-studio.itch.io/${PN}" | ||
einfo "and move it to your distfiles directory." | ||
} | ||
|
||
src_install() { | ||
exeinto "${DIR}" | ||
newexe ${MY_PN}.$(usex amd64 x86_64 x86) ${MY_PN} | ||
make_wrapper ${PN} "${DIR}"/${MY_PN} | ||
|
||
insinto "${DIR}" | ||
doins -r ${MY_PN}_Data/ | ||
rm -r "${ED}/${DIR}"/${MY_PN}_Data/*/$(usex amd64 x86 x86_64) || die | ||
|
||
# Some Unity games have a GUI launcher but this one doesn't use it. | ||
rm "${ED}/${DIR}"/${MY_PN}_Data/Plugins/*/ScreenSelector.so || die | ||
|
||
newicon -s 128 ${MY_PN}_Data/Resources/UnityPlayer.png ${PN}.png | ||
make_desktop_entry ${PN} "BFF or Die" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo Games Project</name> | ||
</maintainer> | ||
</pkgmetadata> |