mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
media-libs/libopusenc: add 0.3
Signed-off-by: Alibek Omarov <a1ba.omarov@gmail.com> Bug: https://bugs.gentoo.org/969550 Part-of: https://github.com/gentoo/gentoo/pull/45554 Closes: https://github.com/gentoo/gentoo/pull/45554 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST libopusenc-0.2.1.tar.gz 388071 BLAKE2B de3a69aeb6bb955352e097e41b12cf0c627ce5278687124d00996f52ccf5e8e39277e7c345bb26e75dd7d29b6a70f50396fa5a157913e0906a18acd007b1621b SHA512 adf30cacea9ac2e5889a40147f53943a1bec5279c5ff3a9b09de8ca52727a6cbaeecd338417fc5856e337ae183c85b0d366d14ec4ec329de12d50709a6f6507a
|
||||
DIST libopusenc-0.3.tar.gz 408391 BLAKE2B 5f8a2b46f7253075a7f184b11c394f25141fe79ff06bc5474d3e36e2037254411796eae02fd233fab9c21592fe1356582505db8170f5782efbd9e6cdc85b02b1 SHA512 41aae6b0a3d359335728a49537a42a4573de9f2d3d39ad875cda501be88307bf6d63060f19efed34e65bb5a5b08ec22299e21e2047d1963b55d280ca91f5f6fa
|
||||
|
||||
40
media-libs/libopusenc/libopusenc-0.3.ebuild
Normal file
40
media-libs/libopusenc/libopusenc-0.3.ebuild
Normal file
@@ -0,0 +1,40 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="High-level API for encoding .opus files"
|
||||
HOMEPAGE="https://www.opus-codec.org/"
|
||||
SRC_URI="https://downloads.xiph.org/releases/opus/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
|
||||
IUSE="doc"
|
||||
|
||||
RDEPEND=">=media-libs/opus-1.6:="
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
doc? ( app-text/doxygen[dot] )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Should be able to drop in next release if patches merged
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--enable-shared \
|
||||
$(use_enable doc)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
}
|
||||
Reference in New Issue
Block a user