You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/ttaenc/ttaenc-3.4.1-r1.ebuild

36 lines
592 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit toolchain-funcs
DESCRIPTION="True Audio Compressor Software"
HOMEPAGE="http://tta.sourceforge.net"
SRC_URI="mirror://sourceforge/tta/${P}-src.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="sys-apps/sed"
S=${WORKDIR}/${P}-src
src_prepare() {
sed -i -e "s:gcc:$(tc-getCC):g" \
-e "s:-o:${LDFLAGS} -o:g" \
Makefile || die
}
src_compile () {
emake CFLAGS="${CFLAGS}"
}
src_install () {
dobin ttaenc
dodoc ChangeLog-${PV} README
}