blob: e23960779320f2d74f01fd9685bb7a6fc6c6c15a (
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
29
30
31
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mp32ogg/mp32ogg-0.11-r1.ebuild,v 1.1 2003/06/11 14:14:52 phosphan Exp $
DESCRIPTION="A perl script to convert MP3 files to Ogg Vorbis files."
HOMEPAGE="http://faceprint.com/code/"
SRC_URI="ftp://ftp.faceprint.com/pub/software/scripts/mp32ogg"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~x86"
DEPEND=""
RDEPEND="dev-perl/MP3-Info
dev-perl/String-ShellQuote
media-sound/vorbis-tools"
S=${WORKDIR}/
src_unpack(){
cp ${DISTDIR}/${A} ${S}
}
src_install() {
dobin mp32ogg
}
|