1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00
freebsd-ports/audio/py-aubio/Makefile
Jason E. Hale 34341b1031 audio/aubio: Update to 0.4.7
- Allow building with python 3.x
- Add DOCS option for general documentation built by sphinx
- Add MANPAGES option build/install manpages since it requires extra deps
- Add TEST option and disable building tests by default
- Whitespace align options and separate blocks for better readability

audio/py-aubio: Update to 0.4.7
- Allow concurrent installation
2018-10-01 03:13:59 +00:00

34 lines
857 B
Makefile

# $FreeBSD$
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}nose2>=0.6.5:devel/py-nose2@${PY_FLAVOR}
USES+= python
USE_PYTHON= autoplist concurrent distutils
TEST_ENV= ${MAKE_ENV} PYTHONPATH=${WRKSRC}/`ls -rtd build/lib.* | head -1`
TEST_TARGET= test
DO_MAKE_TEST= ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${PYSETUP}
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"