blob: 6fbb22c75c7ef2cfcc4bd3a303428648f7d3ecab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SUMMARY = "A Python module for reading and writing WAV files using numpy arrays."
HOMEPAGE = "https://github.com/WarrenWeckesser/wavio"
LICENSE = "BSD-2-Clause"
LIC_FILES_CHKSUM = "file://${WORKDIR}/git/README.rst;beginline=48;endline=48;md5=bc752f76db0a3e24c17afcc8dda3d553"
# License listed in README.rst at https://github.com/WarrenWeckesser/wavio
SRC_URI = "git://github.com/WarrenWeckesser/wavio;protocol=https;branch=master"
PV = "0.0.4+git${SRCPV}"
SRCREV = "54699acdde2cb4f68fbe3dc5847a74ab796662e1"
S = "${WORKDIR}/git"
inherit setuptools3
DEPENDS += "python3-numpy"
RDEPENDS:${PN} += "python3-audio python3-core python3-numpy"
|