diff options
author | Sam James <sam@gentoo.org> | 2021-10-24 05:35:53 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-10-24 05:40:17 +0000 |
commit | bf481ca7bcdca52f6a74a7c867dd0796f23ed3cb (patch) | |
tree | 4f6b97ce75cc397dd35cf68ddf40c18dce410bfd /games-misc/openmsx | |
parent | dev-ruby/shoulda-matchers: add 5.0.0 (diff) | |
download | gentoo-bf481ca7bcdca52f6a74a7c867dd0796f23ed3cb.tar.gz gentoo-bf481ca7bcdca52f6a74a7c867dd0796f23ed3cb.tar.bz2 gentoo-bf481ca7bcdca52f6a74a7c867dd0796f23ed3cb.zip |
games-misc/openmsx: add 0.4.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-misc/openmsx')
-rw-r--r-- | games-misc/openmsx/Manifest | 1 | ||||
-rw-r--r-- | games-misc/openmsx/openmsx-0.4.2.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/games-misc/openmsx/Manifest b/games-misc/openmsx/Manifest index 26ae53393b91..10c66a3c2bbb 100644 --- a/games-misc/openmsx/Manifest +++ b/games-misc/openmsx/Manifest @@ -1 +1,2 @@ DIST openmsx-0.4.0-source.tar.xz 114608 BLAKE2B e693b206cf350ee46b1fc5b7bf4d2a666ae7bee0fea1e2df3a29cfcfd3dbddd58d7d20d8184d6d367d377869ee5e2f970a8721cc1a1ec39babf1352a600bc759 SHA512 9a34a2f7fd9529d8b2d03f47c307a6818ecd753e8f8205c18c966d7425bf8d4a4409cd365b9d1a04d4b00d994da9e73d4270e29af3a388f48f07d3d83486e225 +DIST openmsx-0.4.2-source.tar.xz 114804 BLAKE2B 6936fed13d4e2cbd29902c3546693d32171828ef55cacb0a123d144a7dc51f0f01dac6ceae1d57d1bfcb0d926ff800f5aed5ee1ae3733cea32b5d5c35ec58212 SHA512 72258276c81070ea931c26ed153ce26b762663af7fc349f2fb7dcefc49d4ea5914ce726700e06beed80c5d3e1e39040e0c1eecc17daf35b4fa37c27f7ca4730a diff --git a/games-misc/openmsx/openmsx-0.4.2.ebuild b/games-misc/openmsx/openmsx-0.4.2.ebuild new file mode 100644 index 000000000000..292d74bb9fc5 --- /dev/null +++ b/games-misc/openmsx/openmsx-0.4.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit python-any-r1 + +DESCRIPTION="Open source music base set for OpenTTD" +HOMEPAGE="https://wiki.openttd.org/en/Basesets/OpenMSX https://github.com/OpenTTD/OpenMSX" +SRC_URI="https://cdn.openttd.org/openmsx-releases/${PV}/${P}-source.tar.xz" +S="${WORKDIR}/${P}-source" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +# Don't appear to be meaningful +RESTRICT="test" + +BDEPEND="${PYTHON_DEPS}" + +pkg_setup() { + python-any-r1_pkg_setup +} + +src_install() { + insinto /usr/share/openttd/baseset/${P} + doins ${P}/{*.mid,openmsx.obm} + dodoc ${P}/{changelog,readme}.txt +} |