commit: 61a1db9477aec55ad9bbd9d09ab7ec6ca94d6759 Author: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in> AuthorDate: Fri May 21 04:33:20 2021 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> CommitDate: Sat May 22 15:21:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=61a1db94
media-sound/sonic: initial import Signed-off-by: Anna Vyalkova <cyber+gentoo <AT> sysrq.in> media-sound/sonic/Manifest | 1 + media-sound/sonic/metadata.xml | 11 ++++++++ media-sound/sonic/sonic-0.3.0_pre20210316.ebuild | 32 ++++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/media-sound/sonic/Manifest b/media-sound/sonic/Manifest new file mode 100644 index 000000000..ea341be6e --- /dev/null +++ b/media-sound/sonic/Manifest @@ -0,0 +1 @@ +DIST sonic-0.3.0_pre20210316.tar.gz 5350614 BLAKE2B 95084bd43794e36259b0048b603d23d32fa8fff3531796965ccb8548a23c4e392eaf242e138885c638d08ef44c87537d0cd74f9de2b352ba55a9f2613c6c89a8 SHA512 a44246b1955cef87466162e02e29ea6595f7b4bdab51e90ee0904bf7f68e697a0d006162b367fed51ab8409bce7aee38d155dee0d95c5ac5f29ee8d390c0d488 diff --git a/media-sound/sonic/metadata.xml b/media-sound/sonic/metadata.xml new file mode 100644 index 000000000..22900dd41 --- /dev/null +++ b/media-sound/sonic/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <upstream> + <remote-id type="github">waywardgeek/sonic</remote-id> + </upstream> + <maintainer type="person"> + <email>[email protected]</email> + <name>Anna</name> + </maintainer> +</pkgmetadata> diff --git a/media-sound/sonic/sonic-0.3.0_pre20210316.ebuild b/media-sound/sonic/sonic-0.3.0_pre20210316.ebuild new file mode 100644 index 000000000..3c60fa2f3 --- /dev/null +++ b/media-sound/sonic/sonic-0.3.0_pre20210316.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib + +COMMIT="ba331411f17702e01f6c2d7016eefebaa695871f" +DESCRIPTION="Simple library to speed up or slow down speech" +HOMEPAGE="https://github.com/waywardgeek/sonic" +SRC_URI="https://github.com/waywardgeek/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${COMMIT}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="sci-libs/fftw" +DEPEND="${RDEPEND}" + +DOCS=( README doc/index.md ) + +src_prepare() { + default + sed "s|/lib|/$(get_libdir)|" -i Makefile || die + sed "/install libsonic.a/d" -i Makefile || die +} + +src_install() { + default + doman sonic.1 +}
