media-sound/taginfo: revision bump (EAPI=7)
authorMikle Kolyada <zlogene@gentoo.org>
Thu, 26 Jul 2018 20:56:38 +0000 (23:56 +0300)
committerMikle Kolyada <zlogene@gentoo.org>
Thu, 26 Jul 2018 20:57:22 +0000 (23:57 +0300)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

media-sound/taginfo/taginfo-1.2-r2.ebuild [new file with mode: 0644]

diff --git a/media-sound/taginfo/taginfo-1.2-r2.ebuild b/media-sound/taginfo/taginfo-1.2-r2.ebuild
new file mode 100644 (file)
index 0000000..8c20895
--- /dev/null
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="A simple ID3 tag reader for use in shell scripts"
+HOMEPAGE="http://freshmeat.net/projects/taginfo"
+SRC_URI="http://grecni.com/software/taginfo/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+
+RDEPEND="media-libs/taglib"
+DEPEND="${RDEPEND}"
+
+src_compile() {
+       emake CC="$(tc-getCXX) ${LDFLAGS} ${CXXFLAGS}"
+}
+
+src_install() {
+       dobin taginfo
+       dodoc ChangeLog contrib/mp3-resample.sh README
+}