1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Add port audio/libaiff:

LibAiff is a library for C applications, providing transparent read and
write operations for Audio Interchange File Format files.

With LibAiff your application can easily use the Audio IFF format to
interchange digital audio.

LibAiff wants to implement all the features of the AIFF 1.3 standard,
including markers, comments, etc.

This version of LibAiff supports the following features:

    * Reading any valid Audio IFF file.
    * Writing a valid Audio IFF file.
    * Reading a compressed AIFF Compressed (AIFC) file with audio encoded
      in Linear PCM, both big-endian and little-endian.
    * Read & write samples in all formats supported by the Audio IFF standard.
    * Convert any sample format to and from 32 bits.
    * Getting and setting all the AIFF Attributes.
    * Reading and writing markers to positions on the sound.
    * Reading instrument data from AIFF files.

WWW: http://aifftools.sourceforge.net/libaiff/
This commit is contained in:
Andrew Pantyukhin 2006-09-14 16:22:32 +00:00
parent 16342c4af2
commit 30a2ddae5b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=173058
4 changed files with 51 additions and 0 deletions

View File

@ -292,6 +292,7 @@
SUBDIR += liba52
SUBDIR += liba52-devel
SUBDIR += libadplug
SUBDIR += libaiff
SUBDIR += libao
SUBDIR += libaudiofile
SUBDIR += libcdaudio

25
audio/libaiff/Makefile Normal file
View File

@ -0,0 +1,25 @@
# New ports collection makefile for: libaiff
# Date created: 14 September 2006
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= libaiff
PORTVERSION= 2.0
CATEGORIES= audio
MASTER_SITES= SF/aifftools
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Read and write AIFF files
GNU_CONFIGURE= yes
PLIST_FILES= lib/${PORTNAME}.a include/${PORTNAME}/config.h include/${PORTNAME}/endian.h \
include/${PORTNAME}/${PORTNAME}.h
PLIST_DIRS= include/${PORTNAME}
post-patch:
@${REINPLACE_CMD} -e 's/install: libaiff.a/install:/' ${WRKSRC}/${MAKEFILE}.in
.include <bsd.port.mk>

3
audio/libaiff/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (libaiff-2.0.tar.gz) = 90efe14098d85459b3fb303ad56ec0d4
SHA256 (libaiff-2.0.tar.gz) = 17763395f99a6fed1e3ff9521ffe7633459aa9119642d6f3dcf8c560b69a59e5
SIZE (libaiff-2.0.tar.gz) = 55429

22
audio/libaiff/pkg-descr Normal file
View File

@ -0,0 +1,22 @@
LibAiff is a library for C applications, providing transparent read and
write operations for Audio Interchange File Format files.
With LibAiff your application can easily use the Audio IFF format to
interchange digital audio.
LibAiff wants to implement all the features of the AIFF 1.3 standard,
including markers, comments, etc.
This version of LibAiff supports the following features:
* Reading any valid Audio IFF file.
* Writing a valid Audio IFF file.
* Reading a compressed AIFF Compressed (AIFC) file with audio encoded
in Linear PCM, both big-endian and little-endian.
* Read & write samples in all formats supported by the Audio IFF standard.
* Convert any sample format to and from 32 bits.
* Getting and setting all the AIFF Attributes.
* Reading and writing markers to positions on the sound.
* Reading instrument data from AIFF files.
WWW: http://aifftools.sourceforge.net/libaiff/