diff options
-rw-r--r-- | media-sound/liblc3/Manifest | 1 | ||||
-rw-r--r-- | media-sound/liblc3/liblc3-1.0.3.ebuild | 22 | ||||
-rw-r--r-- | media-sound/liblc3/metadata.xml | 21 |
3 files changed, 44 insertions, 0 deletions
diff --git a/media-sound/liblc3/Manifest b/media-sound/liblc3/Manifest new file mode 100644 index 000000000000..900f32b7acb7 --- /dev/null +++ b/media-sound/liblc3/Manifest @@ -0,0 +1 @@ +DIST liblc3-1.0.3.tar.gz 261702 BLAKE2B 5b4f6961eb0990e746c9659c18f8a5daf1841cf3035d78f15414dfd631c18d0a61d8fbffb602130cae42d4ad3d87cee2bf311cb7065c217b79cc25637f2337c6 SHA512 ba8e2515b88bdc2db5c6fca0189d0f03720af1e2c33c91ade586efbd6f402a4ff9af33b5235716cac8dce7c17a5a432471f9572c17641fbc7877855aa0c2c2b4 diff --git a/media-sound/liblc3/liblc3-1.0.3.ebuild b/media-sound/liblc3/liblc3-1.0.3.ebuild new file mode 100644 index 000000000000..2dd84db02299 --- /dev/null +++ b/media-sound/liblc3/liblc3-1.0.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="LC3 is an efficient low latency audio codec" +HOMEPAGE="https://github.com/google/liblc3" +SRC_URI="https://github.com/google/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="tools" +KEYWORDS="~amd64" + +src_configure() { + local emesonargs=( + $(meson_use tools) + ) + meson_src_configure +} diff --git a/media-sound/liblc3/metadata.xml b/media-sound/liblc3/metadata.xml new file mode 100644 index 000000000000..b49d07f25122 --- /dev/null +++ b/media-sound/liblc3/metadata.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>sam@gentoo.org</email> + <name>Sam James</name> + </maintainer> + <maintainer type="person"> + <email>joakim.tjernlund@infinera.com</email> + <name>Joakim Tjernlund</name> + </maintainer> + <upstream> + <bugs-to>https://github.com/google/liblc3/issues</bugs-to> + <changelog>https://github.com/google/liblc3/releases</changelog> + <doc>https://github.com/google/liblc3#readme</doc> + <remote-id type="github">google/liblc3</remote-id> + </upstream> + <use> + <flag name="tools">Enable extra tools</flag> + </use> +</pkgmetadata> |