blob: 07e08680b0ed010445e28b9d2e6fe29d0ca7f35f (
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-2005 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.2 2005/04/03 18:13:51 blubb 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 ~amd64"
RDEPEND="media-sound/lame
dev-perl/String-ShellQuote
media-sound/vorbis-tools"
src_unpack(){
mkdir ${S}
cp ${DISTDIR}/${A} ${S}
}
src_install() {
dobin ogg2mp3
}
|