0c2c7c933c
Mp3blaster is an audio player with a user-friendly interface that will run on any text console. The interface is built using ncurses, and features all common audio player controls. The playlist editor is very flexible and allows nested groups (albums). Supported audio media: mp3, ogg vorbis, wav, sid and streaming mp3 over HTTP.
36 lines
841 B
Makefile
36 lines
841 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/05/23 15:36:06 naddy Exp $
|
|
|
|
COMMENT= "text console audio player with an interactive interface"
|
|
|
|
DISTNAME= mp3blaster-3.1.1
|
|
CATEGORIES= audio
|
|
NEED_VERSION= 1.530
|
|
|
|
HOMEPAGE= http://www.stack.nl/~brama/mp3blaster/
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}src/ \
|
|
${MASTER_SITE_SUNSITE:=apps/sound/players/mp3/}
|
|
|
|
LIB_DEPENDS= sidplay.1::audio/libsidplay \
|
|
vorbis.1,vorbisfile.2::audio/libvorbis
|
|
|
|
CONFIGURE_STYLE= autoconf
|
|
AUTOCONF_NEW= yes
|
|
CONFIGURE_ARGS= --with-cxxflags="${CXXFLAGS}"
|
|
|
|
post-extract:
|
|
@cd ${WRKSRC}; touch -r configure.in configure.in.stamp
|
|
|
|
post-configure:
|
|
@cd ${WRKSRC}; touch -r configure.in.stamp configure.in
|
|
|
|
.include <bsd.port.mk>
|