~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to iris/example/conntest/prepare

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
CS_BASE=../../../cutestuff
4
 
QCA_BASE=../../../qca
5
 
IRIS_BASE=../..
6
 
 
7
 
# import cutestuff
8
 
mkdir cutestuff
9
 
cp -a $CS_BASE/util cutestuff
10
 
cp -a $CS_BASE/network cutestuff
11
 
 
12
 
# import qca
13
 
mkdir qca
14
 
cp -a $QCA_BASE/src/* qca
15
 
 
16
 
# import iris
17
 
mkdir iris
18
 
cp -a $IRIS_BASE/libidn iris
19
 
cp -a $IRIS_BASE/libidn.pri iris
20
 
cp -a $IRIS_BASE/include iris
21
 
cp -a $IRIS_BASE/xmpp-core iris
22
 
cp -a $IRIS_BASE/xmpp-im iris
23
 
cp -a $IRIS_BASE/jabber iris
24
 
cp -a $IRIS_BASE/iris.pri iris
25
 
 
26
 
# other stuff
27
 
cp -a $IRIS_BASE/cs.pri .
28
 
cp -a $IRIS_BASE/example/example.pri .
29
 
cp -a $IRIS_BASE/COPYING .
30