463c27d4f8
The tests can take a rather long time to complete, so I thought they
were hanging. Add a pre-test target to explain this, so people with old
hardware like myself know what to expect and for folks who have
WITH_TESTING enabled. Normally, regression tests don't take this long.
This is also a team maintained port, so pitfalls should be highlighted.
I also retract my statement of "test target has been failing for a while"
in the previous commit message. This was based on me testing the previous
version and seeing the same behavior of the wvtest process seemingly
hanging as I observed in the current version before review.
Reported by: diizzy, arrowd
Fixes: f8ba7a9305 - audio/wavpack: Update to 5.9.0
30 lines
693 B
Makefile
30 lines
693 B
Makefile
PORTNAME= wavpack
|
|
DISTVERSION= 5.9.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= https://github.com/dbry/WavPack/releases/download/${DISTVERSION}/ \
|
|
http://www.wavpack.com/
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= Audio codec for lossless, lossy, and hybrid compression
|
|
WWW= https://www.wavpack.com/ \
|
|
https://github.com/dbry/WavPack/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cmake:testing cpe iconv pkgconfig tar:xz
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_OFF= BUILD_TESTING
|
|
CMAKE_ON= BUILD_SHARED_LIBS
|
|
|
|
OPTIONS_DEFINE= ASM
|
|
OPTIONS_DEFAULT=ASM
|
|
|
|
ASM_CMAKE_BOOL= WAVPACK_ENABLE_ASM
|
|
|
|
pre-test:
|
|
@${ECHO_CMD} "====> NOTE: Test may take 8 minutes or longer to complete"
|
|
|
|
.include <bsd.port.mk>
|