blob: 42732ab147d44e39674be62f8634cd65b65ff3bb (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ollie Rutherfurd <oliver@rutherfurd.net>
# :mode=shellscript:noTabs=true:
# $header$
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="PyChecker is a tool for finding common bugs in python source code."
SRC_URI="http://prdownloads.sourceforge.net/pychecker"/${A}
HOMEPAGE="http://pychecker.sourceforge.net/"
DEPEND="virtual/python"
src_install(){
cd ${S}
try python setup.py install --prefix=${D}/usr
dodoc CHANGELOG
dodoc COPYRIGHT
dodoc KNOWN_BUGS
dodoc MAINTAINERS
dodoc README
dodoc TODO
dodoc VERSION
}
|