blob: e1834f13743c655ad2b237128e25ea1577988ed1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/mp3fs/mp3fs-0.07.ebuild,v 1.1 2007/04/13 12:56:52 dragonheart Exp $
DESCRIPTION="MP3FS is a read-only FUSE filesystem which transcodes FLAC audio
files to MP3 on the fly when opened and read."
HOMEPAGE="http://mp3fs.sf.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="sys-fs/fuse
media-libs/libid3tag
media-libs/flac
media-sound/lame"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|