1
0
Fork 0

added domodule calls so that stuff actually gets installed :-/

This commit is contained in:
Horea Christian 2013-11-10 15:16:42 +01:00
parent 18734c9260
commit 807ff46f66
1 changed files with 9 additions and 1 deletions

View File

@ -6,7 +6,7 @@ EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit python-single-r1 toolchain-funcs
inherit python-single-r1
DESCRIPTION="A tool to create LaTeX tables from python lists and arrays."
HOMEPAGE="https://code.google.com/p/matrix2latex/"
@ -27,3 +27,11 @@ src_unpack() {
S="${WORKDIR}/${PN}Python"
cd ${S}
}
src_install() {
python_optimize .
python_domodule "${S}"/matrix2latex.py
python_domodule "${S}"/fixEngineeringNotation.py
python_domodule "${S}"/error.py
python_domodule "${S}"/IOString.py
}