diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2010-03-15 14:38:59 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2010-03-15 14:38:59 +0000 |
commit | dcfcdca86d4252285e458a90b08ca92d9271c15a (patch) | |
tree | 82ddecf65e135a68c1b3f206cd7aee323bb6fb91 /multimedia/rtmpdump/Makefile | |
parent | 3ea5acac29c73ee45ade30780cb94d080468d8f3 (diff) |
Add multimedia/rtmpdump, a tool to download RTMP streams. All forms of RTMP
are supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://.
Notes
Notes:
svn path=/head/; revision=251082
Diffstat (limited to 'multimedia/rtmpdump/Makefile')
-rw-r--r-- | multimedia/rtmpdump/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/multimedia/rtmpdump/Makefile b/multimedia/rtmpdump/Makefile new file mode 100644 index 000000000000..43f799f4ffd3 --- /dev/null +++ b/multimedia/rtmpdump/Makefile @@ -0,0 +1,37 @@ +# Ports collection makefile for: rtmpdump +# Date created: March 15, 2010 +# Whom: hrs +# +# $FreeBSD$ + +PORTNAME= rtmpdump +PORTVERSION= 2.2 +CATEGORIES= multimedia net +MASTER_SITES= http://rtmpdump.mplayerhq.hu/download/ + +MAINTAINER= hrs@FreeBSD.org +COMMENT= A tool to download RTMP streams + +USE_BZIP2= yes +USE_GMAKE= yes +ALL_TARGET= posix + +MAN1= rtmpdump.1 +MAN8= rtmpgw.8 + +PLIST_FILES_PROG= bin/rtmpdump bin/rtmpgw bin/rtmpsrv bin/rtmpsuck +PORTDOCS= ChangeLog README + +do-install: + cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PLIST_FILES_PROG:S,^bin/,,} \ + ${PREFIX}/bin \ + && ${INSTALL_MAN} ${MAN1} ${MAN1PREFIX}/man/man1 \ + && ${INSTALL_MAN} ${MAN8} ${MAN1PREFIX}/man/man8 + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} +.endif + +.include <bsd.port.mk> |