blob: f87937ad8f095fb5ee9e7b7194d5fc234118a0ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cplay/cplay-1.46.ebuild,v 1.1 2002/12/17 19:19:53 blauwers Exp $
DESCRIPTION="A Curses front-end for various audio players."
SRC_URI="http://www.tf.hut.fi/~flu/hacks/cplay/${P}.tar.gz"
HOMEPAGE="http://www.tf.hut.fi/~flu/hacks/cplay/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="virtual/python"
src_install () {
make PREFIX=${D}/usr recursive-install || die
dobin cplay
doman cplay.1
dodoc ChangeLog README TODO
}
|