mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 22:53:31 +02:00
- do not fortify source - use preferred CC Bug: https://bugs.gentoo.org/936815 Bug: https://bugs.gentoo.org/928245 Signed-off-by: Filip Kobierski <fkobi@pm.me> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
34 lines
679 B
Bash
34 lines
679 B
Bash
# Copyright 2023-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs xdg
|
|
|
|
DESCRIPTION="A UI for Focusrite Scarlett and Clarett audio interfaces"
|
|
HOMEPAGE="https://github.com/geoffreybennett/alsa-scarlett-gui"
|
|
SRC_URI="https://github.com/geoffreybennett/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
dev-libs/glib:2
|
|
gui-libs/gtk:4
|
|
media-libs/alsa-lib
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.4.0_adjust-cflags.patch
|
|
)
|
|
|
|
MAKEOPTS="${MAKEOPTS} -C src"
|
|
|
|
export PREFIX="/usr"
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)"
|
|
}
|