Files
guru/app-misc/bitfake2/bitfake2-1.0.ebuild
Paul Zander 729d731070 Revert "Pruned (broken) v1.0, Added v1.1"
This reverts commit bce260068c
Please make sure you use `pkgdev commit` optionally with `-e`/`--edit`.
Please do not drop and add ebuilds in the same commit. They go in
separate commits.
Please check your commits _before_ you push with `pkgdev push --pull
-A`.

Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
2026-03-12 22:25:10 +01:00

32 lines
640 B
Bash

# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v3
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Audio tool using FFTW and libebur128"
HOMEPAGE="https://github.com/ray17x/bitfake2"
SRC_URI="https://github.com/ray17x/bitfake2/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
media-libs/taglib
sci-libs/fftw:3.0
media-libs/libebur128
media-libs/libsndfile
media-video/ffmpeg:=
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_compile() {
emake CXX="$(tc-getCXX)"
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install
}