mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
Fix conflicts entries based on a script that searches for duplicate files installed by several ports. Some patters seem to make ports conflict with themselves, but this is actually not the case due to the check-*-conflicts logic implemented in bsd.port.mk, which excludes self-conflicts. PHP based ports have been ignored in this commit as requested by the committers currently working on the php-8.1 import. Approved by: portmgr (implicit)
23 lines
595 B
Makefile
23 lines
595 B
Makefile
PORTNAME= zita-audiotools
|
|
DISTVERSION= 1.0.0
|
|
CATEGORIES= audio python
|
|
MASTER_SITES= https://kokkinizita.linuxaudio.org/linuxaudio/downloads/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Tools for audio processing
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
LIB_DEPENDS= libsndfile.so:audio/libsndfile \
|
|
libzita-resampler.so:audio/zita-resampler
|
|
|
|
USES= localbase python:3.6+ tar:bz2
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}fmoo-audiotools
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/audiotools/*.so
|
|
|
|
.include <bsd.port.mk>
|