8ac46612da
Streamripper started as a way to separate tracks via Shoutcast's title-streaming feature. This has now been expanded into a much more generic feature, where part of the program only tries to "hint" at where one track starts and another ends, thus allowing a MP3 decoding engine to scan for a silent mark, which is used to find an exact track separation.
33 lines
747 B
Makefile
33 lines
747 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/02/19 08:19:42 mark Exp $
|
|
|
|
COMMENT= "rip shoutcast streams to local mp3s"
|
|
|
|
DISTNAME= streamripper-1.0.5
|
|
CATEGORIES= audio
|
|
NEED_VERSION= 1.504
|
|
|
|
HOMEPAGE= http://streamripper.sourceforge.net/
|
|
|
|
MAINTAINER= Mark Grimes <mark@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://streamripper.sourceforge.net/dl/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
DOC= CHANGES COPYING README THANKS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/streamripper ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/streamripper
|
|
.for file in ${DOC}
|
|
@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/streamripper
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|