blob: 8c20895d3dec944c12ebc79cf1c6dbfb62f454d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
}
|