Ticket #11692: Portfile

File Portfile, 1.0 KB (added by yunzheng.hu@…, 17 years ago)

standalone Portfile of ccxstream

Line 
1# $Id$
2
3PortSystem 1.0
4name                ccxstream
5version             1.0.15
6categories          net
7maintainers         yunzheng.hu@gmail.com
8description         Stream media files to XBox Media Center via XBMSP
9long_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.
12homepage            http://www.xboxmediacenter.de/
13platforms           darwin
14
15#depends_lib         port:expat port:libiconv port:ncurses port:readline
16
17checksums       md5 c589fff48ce541f26b394c9d82ccbead \
18                sha1 d97ac63374bf8ff6dcb77ccb89a6e92ff3e713d6
19
20master_sites    sourceforge:xbplayer
21
22use_configure   no
23
24destroot {
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