diff options
author | Pavel Denisov <pavel.a.denisov@gmail.com> | 2016-06-30 22:51:20 -0400 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-07-02 15:23:45 +0200 |
commit | c9582c99ee2f9dd3053b9c48db1efc957566c61c (patch) | |
tree | f0e199f5bbcb1124fdea0ea526c1c7bac72206f7 /media-sound | |
parent | dev-python/pycipher: remove old and deprecated (diff) | |
download | gentoo-c9582c99ee2f9dd3053b9c48db1efc957566c61c.tar.gz gentoo-c9582c99ee2f9dd3053b9c48db1efc957566c61c.tar.bz2 gentoo-c9582c99ee2f9dd3053b9c48db1efc957566c61c.zip |
media-sound/wav2json: new ebuild
Closes: https://github.com/gentoo/gentoo/pull/1809
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/wav2json/Manifest | 1 | ||||
-rw-r--r-- | media-sound/wav2json/metadata.xml | 16 | ||||
-rw-r--r-- | media-sound/wav2json/wav2json-0.4.ebuild | 27 |
3 files changed, 44 insertions, 0 deletions
diff --git a/media-sound/wav2json/Manifest b/media-sound/wav2json/Manifest new file mode 100644 index 000000000000..1176545bcca3 --- /dev/null +++ b/media-sound/wav2json/Manifest @@ -0,0 +1 @@ +DIST wav2json-0.4.tar.gz 742606 SHA256 ad1b1aff4fa7c026ae715681afd39620d1b468bbdfa64f00541d4b6d10b36044 SHA512 0bfac4dbd5c2535616fcf09e00914eb06fbf042dab6e69133c9ad6494328ff0bcb849d694499946cc6e8e6ac6dc0f1c68ef462c0a264c93da2c2a7aaea4281a0 WHIRLPOOL d0e83d64a882cf13e1df9e9b5a1c94a2601890dd2977fa704cc276319a405cd4cde239b6a3128af777c5500e3fddef07a5a2fa93470689d4f538c2c1a66b4312 diff --git a/media-sound/wav2json/metadata.xml b/media-sound/wav2json/metadata.xml new file mode 100644 index 000000000000..41e34520996a --- /dev/null +++ b/media-sound/wav2json/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>pavel.a.denisov@gmail.com</email> + <name>Pavel Denisov</name> + <description>Proxied maintainer; set to assignee in all bugs</description> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <upstream> + <remote-id type="github">beschulz/wav2json</remote-id> + </upstream> +</pkgmetadata> diff --git a/media-sound/wav2json/wav2json-0.4.ebuild b/media-sound/wav2json/wav2json-0.4.ebuild new file mode 100644 index 000000000000..90440452cead --- /dev/null +++ b/media-sound/wav2json/wav2json-0.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +COMMIT_ID="e412923f1f792408e8ae1096ca40fb5307ddfc74" +DESCRIPTION="Generate waveformjs.org compatible json data out of wav files" +HOMEPAGE="https://github.com/beschulz/wav2json" +SRC_URI="https://github.com/beschulz/wav2json/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz" + +S=${WORKDIR}/${PN}-${COMMIT_ID}/build + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-libs/boost:= + media-libs/libsndfile +" +RDEPEND="${DEPEND}" + +src_install() { + dobin ../bin/Linux/wav2json +} |