1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-06-11 03:05:22 +02:00

media-sound/flac2ogg: new ebuild

This commit is contained in:
2026-06-02 06:45:56 +02:00
parent cbea509b5a
commit eef3519b46
2 changed files with 41 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
EBUILD flac2ogg-9999.ebuild 736 BLAKE2B 8a4d766e70c7392d3ba47b115a0b03219530ed2bc8951ff555e8efd1d804bfabcac4904955eab34ba1b9dba1daed8c547f1d848f03b6a275bdb180a05075c54e SHA512 7cb60c39e799fd22ebc9f45c8db04e70226c796ab61bdbcb00e3aec164dc705c5151a78f9f87d04684e141f19b1e64b79d811cebe48f3f2a80b29d458c2c9448
+40
View File
@@ -0,0 +1,40 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..15} )
inherit git-r3
DESCRIPTION="Multiprocess convert audio files from commandline "
HOMEPAGE="https://github.com/gryf/flac2ogg"
EGIT_REPO_URI="https://github.com/gryf/flac2ogg"
IUSE="+tags +lame mac wav m4a cue"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64"
DEPEND="
media-libs/flac
media-sound/vorbis-tools[ogg123]
mac? ( media-sound/mac )
lame? ( media-sound/lame )
tags? ( media-libs/mutagen )
m4a? ( media-video/mplayer )
cue? (
app-cdr/cuetools
media-sound/shntool
)
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_install() {
pushd "${S}" || die
mv flac2ogg.py flac2ogg
dobin flac2ogg
}