| 1 | # $Id$ |
| 2 | |
| 3 | PortSystem 1.0 |
| 4 | name ccxstream |
| 5 | version 1.0.15 |
| 6 | categories net |
| 7 | maintainers yunzheng.hu@gmail.com |
| 8 | description Stream media files to XBox Media Center via XBMSP |
| 9 | long_description Server to stream music and video files from your \ |
| 10 | UNIX server to a XBox running XBox Media Player \ |
| 11 | using the XBMSP protocol. |
| 12 | homepage http://www.xboxmediacenter.de/ |
| 13 | platforms darwin |
| 14 | |
| 15 | #depends_lib port:expat port:libiconv port:ncurses port:readline |
| 16 | |
| 17 | checksums md5 c589fff48ce541f26b394c9d82ccbead \ |
| 18 | sha1 d97ac63374bf8ff6dcb77ccb89a6e92ff3e713d6 |
| 19 | |
| 20 | master_sites sourceforge:xbplayer |
| 21 | |
| 22 | use_configure no |
| 23 | |
| 24 | destroot { |
| 25 | xinstall -m 755 -d ${destroot}${prefix}/bin \ |
| 26 | ${destroot}${prefix}/share/doc/${name} |
| 27 | xinstall -m 755 -v -W ${worksrcpath} \ |
| 28 | ccxstream ccxtest \ |
| 29 | ${destroot}${prefix}/bin |
| 30 | xinstall -m 644 -v -W ${worksrcpath} \ |
| 31 | README ChangeLog TODO xbmsp-xml.txt xbmsp.txt \ |
| 32 | ${destroot}${prefix}/share/doc/${name} |
| 33 | } |
| 34 | |