diff options
author | Sam James <sam@gentoo.org> | 2021-01-07 04:13:19 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-07 04:13:34 +0000 |
commit | 2fd8ff7c201e0bd870ed782de3beb4ece73aa6a9 (patch) | |
tree | 96c53ad48d1beb133fb5c434a38c6a7d038f38b5 /media-libs/libldac | |
parent | media-libs/libldac: version bump to 2.0.2.3 (diff) | |
download | gentoo-2fd8ff7c201e0bd870ed782de3beb4ece73aa6a9.tar.gz gentoo-2fd8ff7c201e0bd870ed782de3beb4ece73aa6a9.tar.bz2 gentoo-2fd8ff7c201e0bd870ed782de3beb4ece73aa6a9.zip |
media-libs/libldac: style changes
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/libldac')
-rw-r--r-- | media-libs/libldac/libldac-2.0.2.3.ebuild | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/media-libs/libldac/libldac-2.0.2.3.ebuild b/media-libs/libldac/libldac-2.0.2.3.ebuild index 98474b9af7ac..2be002228f12 100644 --- a/media-libs/libldac/libldac-2.0.2.3.ebuild +++ b/media-libs/libldac/libldac-2.0.2.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,18 +12,14 @@ SRC_URI="https://github.com/EHfive/ldacBT/releases/download/v${PV}/ldacBT-${PV}. LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" -BDEPEND="" S="${WORKDIR}/ldacBT" -src_prepare() { - cmake_src_prepare - mycmakeargs=( +src_configure() { + local mycmakeargs=( -DLDAC_SOFT_FLOAT=OFF -DINSTALL_LIBDIR=/usr/$(get_libdir) - ) + ) + + cmake_src_configure } |