34 lines
776 B
Makefile
34 lines
776 B
Makefile
|
COMMENT= library that handles the decoding of sound file formats
|
||
|
|
||
|
DISTNAME= SDL_sound-1.0.3
|
||
|
PKGNAME= ${DISTNAME:L:S/_/-/}
|
||
|
REVISION= 3
|
||
|
CATEGORIES= devel audio
|
||
|
MASTER_SITES= http://offload1.icculus.org/SDL_sound/downloads/
|
||
|
|
||
|
SHARED_LIBS= SDL_sound 2.0
|
||
|
|
||
|
HOMEPAGE= http://icculus.org/SDL_sound/
|
||
|
|
||
|
# LGPLv2.1+
|
||
|
PERMIT_PACKAGE= Yes
|
||
|
|
||
|
WANTLIB= FLAC SDL c iconv m mikmod ogg pthread physfs smpeg speex \
|
||
|
sndio usbhid vorbis vorbisfile z
|
||
|
|
||
|
LIB_DEPENDS+= audio/flac \
|
||
|
audio/libmikmod \
|
||
|
audio/libvorbis \
|
||
|
audio/speex \
|
||
|
devel/physfs \
|
||
|
devel/sdl \
|
||
|
devel/smpeg
|
||
|
|
||
|
CONFIGURE_STYLE= autoconf
|
||
|
AUTOCONF_VERSION= 2.61
|
||
|
CONFIGURE_ARGS+=--disable-modplug
|
||
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include/smpeg -I${LOCALBASE}/include" \
|
||
|
LDFLAGS="-L${LOCALBASE}/lib"
|
||
|
|
||
|
.include <bsd.port.mk>
|