33493da084
Using information which a SHOUTcast server can optionally send, this program breaks an audio stream into "tracks," stores them in separate files as they arrive, and names the files by appending ".mp3" to the name of the track. The tracks can be listened to at the user's leisure with an MPEG Layer 3 audio player. -- Additional comment (xtraeme): Really useful to save shoutcast sessions from streamtuner and copy them into your mp3 player :-)
14 lines
380 B
Makefile
14 lines
380 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2005/10/20 19:55:49 xtraeme Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.streamripper
|
|
PKG_SUPPORTED_OPTIONS= ogg
|
|
PKG_SUGGESTED_OPTIONS= ogg
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mogg)
|
|
. include "../../audio/libvorbis/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-ogg=${BUILDLINK_PREFIX.libvorbis}
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ogg
|
|
.endif
|