~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to iris/example/conntest/prepare

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2005-01-10 17:41:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050110174143-ltocv5zapl6blf5d
Tags: 0.9.3-1
* New upstream release
* Cleaned up debian/rules (some things are done by upstream Makefiles now)
* Fixed some lintian warnings:
  - removed executable bit from some .png files
  - moved psi.desktop to /usr/share/applications
* Updated menu files

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