public
Description: Darwin Streaming Server
Clone URL: git://github.com/lstoll/dss.git
dss / buildproxytarballx
100755 32 lines (23 sloc) 0.647 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
 
#Darwin BuildTarball script
 
PLAT=`uname`
 
echo removing StreamingProxy-5.0.x-MacOSX.tar.gz
if rm -f StreamingProxy-5.0.x-MacOSX.tar.gz;
then :
fi
 
echo removing StreamingProxy-5.0.x-MacOSX
if rm -rf StreamingProxy-5.0.x-MacOSX;
then :
fi
 
#cvs -q up
./Buildit
if [ -e build/StreamingProxy ] ; then
cp build/StreamingProxy StreamingProxy.tproj/
fi
 
if [ -e build/Development/StreamingProxy ] ; then
cp build/Development/StreamingProxy StreamingProxy.tproj/
fi
 
./DSS_MakeProxyRoot StreamingProxy-5.0.x-MacOSX
tar cvf StreamingProxy-5.0.x-MacOSX.tar StreamingProxy-5.0.x-MacOSX
gzip StreamingProxy-5.0.x-MacOSX.tar
 
echo Done!