|
Revision 803, 429 bytes
(checked in by Gregor, 1 year ago)
|
--
|
- Property svn:eol-style set to
native
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
#!/bin/bash |
|---|
| 2 |
. plats.sh |
|---|
| 3 |
|
|---|
| 4 |
rm -rf tangobos |
|---|
| 5 |
svn export http://svn.dsource.org/projects/tangobos/trunk tangobos || exit 1 |
|---|
| 6 |
|
|---|
| 7 |
cd tangobos |
|---|
| 8 |
for i in $PLATS |
|---|
| 9 |
do |
|---|
| 10 |
pushd /opt/dsss-test/$i |
|---|
| 11 |
tar jcf phobos.tar.bz2 `find . -name std` |
|---|
| 12 |
find . -name std | xargs rm -rf |
|---|
| 13 |
popd |
|---|
| 14 |
PATH="/opt/dsss-test/$i/bin:$PATH" dsss build |
|---|
| 15 |
PATH="/opt/dsss-test/$i/bin:$PATH" dsss install |
|---|
| 16 |
PATH="/opt/dsss-test/$i/bin:$PATH" dsss distclean |
|---|
| 17 |
done |
|---|