blob: 3b9e6bdf2653d8cb99246e7ee2af85f89f813332 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CMAKE_MAKEFILE_GENERATOR='emake'
inherit cmake
DESCRIPTION="signal processing library for blind signal analysis and automatic demodulation"
HOMEPAGE="https://github.com/BatchDrake/sigutils"
SRC_URI="https://dev.gentoo.org/~tomjbe/distfiles/${P}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
sci-libs/fftw:3.0=[threads]
sci-libs/volk:=
media-libs/libsndfile:=
"
RDEPEND="${DEPEND}"
src_prepare() {
eapply "${FILESDIR}"/${PN}-0.3.0_p20251029-fix-CMakeList.patch
eapply_user
cmake_src_prepare
}
|