blob: cb68ab31e9dc90fc47469bab94820a999e5cfa7d (
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
28
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ogg2mp3/ogg2mp3-0.3.ebuild,v 1.1 2004/11/30 14:29:31 chainsaw Exp $
IUSE=""
DESCRIPTION="A perl script to convert Ogg Vorbis files to MP3 files."
HOMEPAGE="http://amor.cms.hu-berlin.de/~h0444y2j/linux.html"
SRC_URI="http://amor.cms.hu-berlin.de/~h0444y2j/pub/ogg2mp3"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~x86"
RDEPEND="media-sound/lame
dev-perl/String-ShellQuote
media-sound/vorbis-tools"
src_unpack(){
mkdir ${S}
cp ${DISTDIR}/${A} ${S}
}
src_install() {
dobin ogg2mp3
}
|