holgersson-overlay/media-sound/ffmpeg-normalize/ffmpeg-normalize-1.22.1-r1.ebuild
Nils Freydank 205b26a736
media-sound/ffmpeg-normalize: Revbump to EAPI="8"
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
2021-07-10 19:09:23 +02:00

30 lines
589 B
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
PYTHON_COMPAT=( python3_{9..10} )
inherit distutils-r1
DESCRIPTION="Utility for batch-normalizing audio using ffmpeg"
HOMEPAGE="https://github.com/slhck/ffmpeg-normalize"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="${HOMEPAGE}"
else
#SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND="
${DEPEND}
media-video/ffmpeg
"