blob: 2ae74091d694157ab08af03ff949420caeb17420 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="C++ library for real-time resampling of audio signals"
HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/"
SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0/1"
KEYWORDS="amd64 ~arm64 ~ia64 ~sparc"
IUSE="tools"
RDEPEND="tools? ( media-libs/libsndfile )"
DEPEND="${RDEPEND}"
BDEPEND=""
HTML_DOCS="docs/."
PATCHES=( "${FILESDIR}"/${PN}-1.6.2-makefile.patch )
src_compile() {
tc-export CXX
emake -C source
if use tools; then
emake -C apps
fi
}
src_install() {
emake -C source DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}"/usr/$(get_libdir) install
if use tools; then
emake -C apps DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
fi
einstalldocs
}
|