# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit subversion DESCRIPTION="An alternative to the FLAC reference encoder, with the goal of increasing encoding speed and implementing experimental features. Standalone version of the ffmpeg flac encoder." HOMEPAGE="http://flake-enc.sourceforge.net/" ESVN_REPO_URI="https://svn.sourceforge.net/svnroot/flake-enc" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86 ~sparc" IUSE="" DEPEND="" src_unpack() { subversion_src_unpack } src_compile() { cd "${S}" ./configure --prefix="${D}/usr" || die "configure failed" make || die "make failed" } src_install() { emake install || die "install failed" dodoc Changelog README }