blob: 7e9cf5cdca19b6cf93bd24f228756f5f12d47672 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3asm/mp3asm-0.1.3-r1.ebuild,v 1.5 2003/11/28 20:49:38 weeve Exp $
MY_P=${PN}-${PV}-${PR/r/}
DESCRIPTION="A command line tool to clean and edit mp3 files."
HOMEPAGE="http://sourceforge.net/projects/mp3asm/"
SRC_URI="mirror://sourceforge/mp3asm/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc"
DEPEND=""
RDEPEND=""
# the author uses weird numbering...
S=${WORKDIR}/mp3asm-0.1
src_compile() {
econf || die
emake || die
}
src_install() {
dodoc README
dobin src/mp3asm
}
|