commit: f0fb56831e7d9a010a95228d1cebc23d83ca26d1 Author: demize <demize <AT> unstable <DOT> systems> AuthorDate: Thu Apr 3 19:19:31 2025 +0000 Commit: demize <demize <AT> unstable <DOT> systems> CommitDate: Thu Apr 3 19:25:11 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f0fb5683
media-sound/spct: new package, add 1.1.1 Signed-off-by: demize <demize <AT> unstable.systems> media-sound/spct/Manifest | 1 + media-sound/spct/metadata.xml | 16 ++++++++++++++++ media-sound/spct/spct-1.1.1.ebuild | 31 +++++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/media-sound/spct/Manifest b/media-sound/spct/Manifest new file mode 100644 index 000000000..dfe0223dc --- /dev/null +++ b/media-sound/spct/Manifest @@ -0,0 +1 @@ +DIST spct-1.1.1.tar.gz 652598 BLAKE2B 40a01c1e3e05e7cacb122d61f4e6d3ea71b144aeb8329e7707d51199f2819379a1e24915877dae304c7760c846ba0d8be19b2a6f21023cf76961140591ce120d SHA512 513bd626b0607674dd9170793a88f9c62433635eff0bf85e2024ba3910c7582f9d5bbd138aa62a9c316e4b75506dd742583164bb18e068d057bd71784fb10ea8 diff --git a/media-sound/spct/metadata.xml b/media-sound/spct/metadata.xml new file mode 100644 index 000000000..f10996f6f --- /dev/null +++ b/media-sound/spct/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <name>demize</name> + <email>[email protected]</email> + </maintainer> + <upstream> + <maintainer status="active"> + <name>jneen</name> + <email>[email protected]</email> + </maintainer> + <remote-id type="codeberg">jneen/spct</remote-id> + <bugs-to>https://codeberg.org/jneen/spct/issues/new</bugs-to> + </upstream> +</pkgmetadata> diff --git a/media-sound/spct/spct-1.1.1.ebuild b/media-sound/spct/spct-1.1.1.ebuild new file mode 100644 index 000000000..744a0ff79 --- /dev/null +++ b/media-sound/spct/spct-1.1.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A CLI program to play back or render SPC files." +HOMEPAGE="https://codeberg.org/jneen/spct" +SRC_URI="https://codeberg.org/jneen/spct/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +DEPEND=" + media-libs/game-music-emu + sys-libs/ncurses:= +" +BDEPEND="virtual/pkgconfig" +RDEPEND=" + ${DEPEND} +" + +src_compile() { + emake VERSION="${PV}" LIBGME_NO_VENDOR=1 +} + +src_install() { + emake VERSION="${PV}" LIBGME_NO_VENDOR=1 PREFIX="${D}/usr" install + dodoc README.md +}
