ffmpeg-normalize-1.28.3.ebuild 655 B

1234567891011121314151617181920212223242526272829
  1. # Copyright 1999-2024 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=8
  4. PYTHON_COMPAT=( python3_{11..13} )
  5. inherit distutils-r1
  6. DESCRIPTION="A utility for batch-normalizing audio using ffmpeg"
  7. HOMEPAGE="https://github.com/slhck/ffmpeg-normalize"
  8. SRC_URI="https://github.com/slhck/ffmpeg-normalize/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
  9. LICENSE="MIT"
  10. SLOT="0"
  11. KEYWORDS="~amd64 ~x86"
  12. IUSE=""
  13. RDEPEND="
  14. dev-python/tqdm[${PYTHON_USEDEP}]
  15. dev-python/ffmpeg-progress-yield[${PYTHON_USEDEP}]
  16. >=media-video/ffmpeg-4.4:=
  17. "
  18. DEPEND="${RDEPEND}
  19. dev-python/setuptools[${PYTHON_USEDEP}]
  20. "
  21. RESTRICT="mirror"