-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vadim Misbakh-Soloviov <[email protected]>
- Loading branch information
Showing
20 changed files
with
115 additions
and
18 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
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
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
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
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
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
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
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
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
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
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
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
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 mari0-1.6.2.tar.gz 3508539 BLAKE2B 704f10d9bac4b172bda9a41e90115b22a0a401804d318a8293d2d77f18d0fa67e923563b30cbc19216b1e4c0b8621e6fa5c2c9dc45b3e5b81e7917ccd13e7c3e SHA512 3d1353f12f02fd993e309cac7ab653c3cbc8a60e8585663186870b5ea49542f46ec2c554711bba710febaf3ad73c7bf66cfba2ccbe4831aa7d5cb2fe5aab8992 |
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,42 @@ | ||
# Copyright 1999-2024 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit desktop wrapper | ||
|
||
DESCRIPTION="A mix from Nintendo's Super Mario Bros and Valve's Portal" | ||
HOMEPAGE="http://stabyourself.net/mari0" | ||
if [[ ${PV} == 9999 ]]; then | ||
inherit git-r3 | ||
EGIT_REPO_URI="https://github.com/Stabyourself/mari0/" | ||
else | ||
SRC_URI="https://github.com/Stabyourself/mari0/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" | ||
KEYWORDS="~amd64 ~x86" | ||
fi | ||
LICENSE="MIT" | ||
SLOT="0" | ||
|
||
RDEPEND=" | ||
>=games-engines/love-0.8.0 | ||
media-libs/devil[gif,png] | ||
" | ||
|
||
src_unpack() { | ||
default | ||
} | ||
|
||
src_install() { | ||
local dir="/usr/share/games/love/${PN}" | ||
insinto "${dir}" | ||
doins -r . | ||
doicon -s scalable "${FILESDIR}/${PN}.svg" | ||
doicon "${S}/_DO_NOT_INCLUDE/icon.png" | ||
make_wrapper "${PN}" "love /usr/share/games/love/${P}" | ||
make_desktop_entry "${PN}" | ||
} | ||
|
||
pkg_postinst() { | ||
elog "${PN} savegames and configurations are stored in:" | ||
elog "~/.local/share/love/${PN}/" | ||
} |
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,42 @@ | ||
# Copyright 1999-2024 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit desktop wrapper | ||
|
||
DESCRIPTION="A mix from Nintendo's Super Mario Bros and Valve's Portal" | ||
HOMEPAGE="http://stabyourself.net/mari0" | ||
if [[ ${PV} == 9999 ]]; then | ||
inherit git-r3 | ||
EGIT_REPO_URI="https://github.com/Stabyourself/mari0/" | ||
else | ||
SRC_URI="https://github.com/Stabyourself/mari0/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" | ||
KEYWORDS="~amd64 ~x86" | ||
fi | ||
LICENSE="MIT" | ||
SLOT="0" | ||
|
||
RDEPEND=" | ||
>=games-engines/love-0.8.0 | ||
media-libs/devil[gif,png] | ||
" | ||
|
||
src_unpack() { | ||
default | ||
} | ||
|
||
src_install() { | ||
local dir="/usr/share/games/love/${PN}" | ||
insinto "${dir}" | ||
doins -r . | ||
doicon -s scalable "${FILESDIR}/${PN}.svg" | ||
doicon "${S}/_DO_NOT_INCLUDE/icon.png" | ||
make_wrapper "${PN}" "love /usr/share/games/love/${P}" | ||
make_desktop_entry "${PN}" | ||
} | ||
|
||
pkg_postinst() { | ||
elog "${PN} savegames and configurations are stored in:" | ||
elog "~/.local/share/love/${PN}/" | ||
} |
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,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Vadim Misbakh-Soloviov</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">Stabyourself/mari0</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
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
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
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
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 @@ | ||
move games-indie/mari0 games-arcade/mari0 |