blob: 706fef177cf3f178379514d719929c74a25e4cee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DESCRIPTION = "A sophisticated Numeric Processing Package for Python"
SECTION = "base"
PRIORITY = "optional"
MAINTAINER = "Michael Lauer <mickey@Vanille.de>"
RDEPENDS = "libc6 python-core"
DEPENDS = "virtual/libc"
SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/Numeric-${PV}.tar.gz"
S = "${WORKDIR}/Numeric-${PV}"
inherit distutils
do_stage() {
cp -a Include/Numeric ${STAGING_INCDIR}
}
|