mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
37 lines
914 B
Bash
37 lines
914 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Provides easy access to ALSA PCM devices"
|
|
HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/"
|
|
SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv sparc x86"
|
|
IUSE=""
|
|
|
|
CDEPEND="media-libs/alsa-lib"
|
|
DEPEND="${CDEPEND}"
|
|
RDEPEND="${CDEPEND}"
|
|
|
|
DOCS=( AUTHORS COPYING README )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-0.3.2-Makefile.patch"
|
|
)
|
|
|
|
src_compile() {
|
|
tc-export CXX
|
|
cd "${S}"/source || "Failed to cd to sources dir"
|
|
emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
cd "${S}"/source || "Failed to cd to sources dir"
|
|
emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" DESTDIR="${D}" install
|
|
}
|