blob: 626dcdb09f3206731c9932f6ea6a61567f046e10 (
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 or later
# Ollie Rutherfurd <oliver@rutherfurd.net>
# $Header $
S="${WORKDIR}/Optik-1.2"
DESCRIPTION="Optik is a powerful, flexible, easy-to-use command-line parsing library for Python."
SRC_URI="http://prdownloads.sourceforge.net/optik/Optik-${PV}.tar.gz"
HOMEPAGE="http://optik.sourceforge.net/"
DEPEND="virtual/python"
src_install () {
cd ${S}
python setup.py install --prefix=${D}/usr || die
dodoc *.txt
}
|