| 1 | #!/bin/bash |
|---|
| 2 | |
|---|
| 3 | #need openssl and perl Net::SSLeay (libnet-ssleay-perl) module for ssl admin |
|---|
| 4 | sudo apt-get install build-essential wget |
|---|
| 5 | sudo addgroup --system qtss |
|---|
| 6 | sudo adduser --system --no-create-home --ingroup qtss qtss |
|---|
| 7 | |
|---|
| 8 | #cd ~ |
|---|
| 9 | wget http://static.macosforge.org/dss/downloads/DarwinStreamingSrvr6.0.3-Source.tar |
|---|
| 10 | tar -xvf DarwinStreamingSrvr6.0.3-Source.tar |
|---|
| 11 | mv DarwinStreamingSrvr6.0.3-Source DarwinStreamingSrvr6.0.3-Source.orig |
|---|
| 12 | wget http://dss.macosforge.org/trac/raw-attachment/ticket/6/dss-6.0.3.patch |
|---|
| 13 | patch -p0 < dss-6.0.3.patch |
|---|
| 14 | mv DarwinStreamingSrvr6.0.3-Source.orig DarwinStreamingSrvr6.0.3-Source |
|---|
| 15 | wget http://dss.macosforge.org/trac/raw-attachment/ticket/6/dss-hh-20080728-1.patch |
|---|
| 16 | patch -p0 < dss-hh-20080728-1.patch |
|---|
| 17 | #need to answer n then y |
|---|
| 18 | cd DarwinStreamingSrvr6.0.3-Source |
|---|
| 19 | mv Install Install.orig |
|---|
| 20 | wget http://dss.macosforge.org/trac/raw-attachment/ticket/6/Install |
|---|
| 21 | chmod +x Install |
|---|
| 22 | ./Buildit |
|---|
| 23 | sudo ./Install |
|---|
| 24 | |
|---|
| 25 | |
|---|