blob: 19fbdd14a6ab16f15a2a6da3b3ab8ec0b69fd60b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ollie Rutherfurd <oliver@rutherfurd.net>
# $Header: /var/cvsroot/gentoo-x86/dev-python/pychecker/pychecker-0.8.7.ebuild,v 1.2 2002/01/27 07:05:30 blocke Exp $
S=${WORKDIR}/${P}
DESCRIPTION="PyChecker is a tool for finding common bugs in python source code."
SRC_URI="http://prdownloads.sourceforge.net/pychecker/${P}.tar.gz"
HOMEPAGE="http://pychecker.sourceforge.net/"
DEPEND="virtual/python"
src_install(){
python setup.py install --prefix=${D}/usr || die
dodoc CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS
dodoc pycheckrc README TODO
}
|