b5dab3cb8b
multimux allows you to multiplex up to 8 mono WAV files into a single PCM audio data stream. Additionally, multimux can add a WAV header to this stream or pipe the stream to ffmpeg to create a multichannel AC3 file as commonly found in DVDs. submitted by Girish Venkatachalam, thanks. I used this to test multichannel support in cmpci.
32 lines
750 B
Makefile
32 lines
750 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/04/13 00:04:11 jakemsr Exp $
|
|
|
|
COMMENT= create multichannel WAV audio files
|
|
DISTNAME= multimux-0.2.5.2
|
|
CATEGORIES= audio
|
|
|
|
HOMEPAGE= http://panteltje.com/panteltje/dvd/
|
|
MAINTAINER= Girish Venkatachalam <girish1729@gmail.com>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
RUN_DEPENDS= ::graphics/ffmpeg
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/multimux ${PREFIX}/bin
|
|
${INSTALL_MAN} ${FILESDIR}/multimux.1 ${PREFIX}/man/man1/
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/multimux
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/multimux/
|
|
|
|
.include <bsd.port.mk>
|