1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

Add wav2cdr 2.3.3, converts WAV files into CDR audio file format.

PR:		ports/85901
Submitted by:	Emanuel Haupt <ehaupt@critical.ch>
This commit is contained in:
Renato Botelho 2005-09-09 15:21:57 +00:00
parent ffb8d81b53
commit c8edc8a565
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=142290
4 changed files with 49 additions and 0 deletions

View File

@ -489,6 +489,7 @@
SUBDIR += vorbis-tools
SUBDIR += vorbisgain
SUBDIR += vsound
SUBDIR += wav2cdr
SUBDIR += wavbreaker
SUBDIR += waveplay
SUBDIR += wavpack

36
audio/wav2cdr/Makefile Normal file
View File

@ -0,0 +1,36 @@
# New ports collection makefile for: wav2cdr
# Date created: 9 Sep 2005
# Whom: Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#
PORTNAME= wav2cdr
PORTVERSION= 2.3.3
CATEGORIES= audio converters
MASTER_SITES= ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= apps/sound/convert
MAINTAINER= ehaupt@critical.ch
COMMENT= Converts WAV files into CDR audio file format
USE_GETOPT_LONG=yes
WRKSRC= ${WRKDIR}/${PORTNAME}
SRC= wav2cdr cmdarg data fileio process
PLIST_FILES= bin/wav2cdr
MAN1= wav2cdr.1
do-build:
.for f in ${SRC}
${CC} ${CFLAGS} -c -o ${WRKSRC}/${f}.o ${WRKSRC}/${f}.c
.endfor
${CC} ${CFLAGS} ${LDFLAGS} -o ${WRKSRC}/${PORTNAME} \
${SRC:C/(.*)/${WRKSRC}\/\1.o/}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1
.include <bsd.port.mk>

2
audio/wav2cdr/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (wav2cdr-2.3.3.tar.gz) = eddbe9baf073d18323bfd6e9d60ff516
SIZE (wav2cdr-2.3.3.tar.gz) = 60449

10
audio/wav2cdr/pkg-descr Normal file
View File

@ -0,0 +1,10 @@
This program converts wav sound files into a format suitable for CD-ROMs, and
can perform some editing functions like cutting or volume change.
It is rather rudimentary, the wav file must have the same sampling parameters
as CD audio. Runs on big and little endian machines.
WWW: http://www.ibiblio.org/pub/Linux/apps/sound/convert/
- ehaupt
ehaupt@critical.ch