| 1 | # $Id: Portfile 38489 2008-07-22 13:25:12Z jmr@macports.org $ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name rtmpdump |
|---|
| 6 | version 1.4 |
|---|
| 7 | categories www net |
|---|
| 8 | platforms darwin |
|---|
| 9 | maintainers captsolo@gmail.com openmaintainer@macports.com |
|---|
| 10 | description a tool for downloading RTMP streaming media |
|---|
| 11 | long_description A small dumper for media content streamed over \ |
|---|
| 12 | the RTMP protocol. Supplying an rtmp url will result \ |
|---|
| 13 | in a dumped flv file, which can be played or transcoded \ |
|---|
| 14 | using ffmpeg/mplayer, etc. The script for downloading \ |
|---|
| 15 | BBC iPlayer streams is included. |
|---|
| 16 | |
|---|
| 17 | homepage http://sourceforge.net/projects/rtmpdump/ |
|---|
| 18 | master_sites sourceforge |
|---|
| 19 | distname ${name}-v${version} |
|---|
| 20 | worksrcdir ${name} |
|---|
| 21 | |
|---|
| 22 | checksums md5 09fef2e674f7579088d966aac5d08736 |
|---|
| 23 | |
|---|
| 24 | patchfiles patch-bytes.h.diff |
|---|
| 25 | use_configure no |
|---|
| 26 | |
|---|
| 27 | variant nodebug description {Build with NODEBUG flag (silences some debug messages when downloading)} { |
|---|
| 28 | patchfiles-append patch-log.h.diff |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | destroot { |
|---|
| 32 | xinstall -m 755 -d ${destroot}${prefix}/bin |
|---|
| 33 | xinstall -m 755 ${worksrcpath}/rtmpdump ${destroot}${prefix}/bin |
|---|
| 34 | xinstall -m 755 ${worksrcpath}/get_iplayer ${destroot}${prefix}/bin |
|---|
| 35 | } |
|---|