media-libs/pcaudiolib: Fix install with slibtool

With slibtool the '.la' files are not installed by default.

Closes: https://bugs.gentoo.org/799617
Signed-off-by: orbea <orbea@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/26315
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
orbea
2022-07-09 15:25:37 -07:00
committed by Sam James
parent d785b4a164
commit 3558043407

View File

@@ -34,11 +34,12 @@ src_configure() {
$(use_with oss)
$(use_with alsa)
$(use_with pulseaudio)
--disable-static
)
econf "${econf_args[@]}"
}
src_install() {
default
rm "${ED}"/usr/lib*/libpcaudio.{a,la} || die
find "${ED}" -name '*.la' -delete || die
}