mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
cf118ccf87
Reported by: lwhsu
31 lines
800 B
Makefile
31 lines
800 B
Makefile
PORTREVISION= 0
|
|
CATEGORIES= audio python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= Python bindings for aubio music analysis
|
|
|
|
LIB_DEPENDS= libaubio.so:audio/aubio
|
|
BUILD_DEPENDS= ${PYNUMPY}
|
|
RUN_DEPENDS= ${PYNUMPY}
|
|
TEST_DEPENDS= sox:audio/sox \
|
|
${PYTHON_PKGNAMEPREFIX}pytest>=2.9:devel/py-pytest@${PY_FLAVOR}
|
|
|
|
USES+= python:3.6+
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
TEST_TARGET= ${WRKSRC}/python
|
|
DO_MAKE_TEST= ${SETENV} ${TEST_ENV} ${LOCALBASE}/bin/pytest-${PYTHON_VER}
|
|
|
|
MASTERDIR= ${.CURDIR}/../../audio/aubio
|
|
SLAVEPORT= py
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
pre-test:
|
|
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} create_test_sounds)
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_aubio*.so
|
|
|
|
.include "${MASTERDIR}/Makefile"
|