blob: 1f5d0f0161d3338a0c9bbc0d564382f02fd4ac23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-cdr/bchunk/bchunk-1.1.1.ebuild,v 1.2 2002/07/11 06:30:10 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Converts bin/cue CD-images to iso+wav/cdr"
SRC_URI="http://hes.iki.fi/bchunk/${P}.tar.gz"
HOMEPAGE="http://hes.iki.fi/bchunk/"
LICENSE="GPL"
DEPEND="virtual/glibc"
src_compile() {
gcc ${CFLAGS} -o bchunk bchunk.c
}
src_install () {
dobin bchunk
doman bchunk.1
dodoc ${P}.lsm
dodoc COPYING README
}
|