22 lines
508 B
Bash
22 lines
508 B
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header$
|
|
|
|
IUSE=""
|
|
DESCRIPTION="TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder"
|
|
HOMEPAGE="http://www.twolame.org/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
RESTRICT="nomirror"
|
|
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64"
|
|
|
|
DEPEND=">=media-libs/libsndfile-1.0.11"
|
|
|
|
src_install() {
|
|
make DESTDIR=${D} || die
|
|
|
|
dodoc AUTHORS ChangeLog COPYING README TODO
|
|
}
|