The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux operating system. ALSA has the following significant features: * Efficient support for all types of audio interfaces, from consumer sound cards to professional multichannel audio interfaces. * Fully modularized sound drivers. * SMP and thread-safe design. * User space library (alsa-lib) to simplify application programming and provide higher level functionality. * Support for the older Open Sound System (OSS) API, providing binary compatibility for most OSS programs. This package provides a PulseAudio plugin for ALSA.
26 lines
672 B
Makefile
26 lines
672 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/12/19 04:04:04 jmcneill Exp $
|
|
#
|
|
|
|
DISTNAME= alsa-plugins-1.0.18
|
|
PKGNAME= ${DISTNAME:S/plugins/plugins-pulse/}
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ftp://ftp.alsa-project.org/pub/plugins/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.alsa-project.org/
|
|
COMMENT= Advanced Linux Sound Architecture (ALSA) - PulseAudio plugin
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS= pkg-config gmake
|
|
USE_LIBTOOL= yes
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/pulse && ${GMAKE}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/pulse && ${GMAKE} install
|
|
|
|
.include "../../audio/alsa-lib/buildlink3.mk"
|
|
.include "../../audio/pulseaudio/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|