blob: 9eed6d17bb4408f1a7a36a9396682b1842c1962b (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#!/bin/sh
# Use this script to Download or Update all dependances to their last
# developpement version.
# The dependances will be placed in the sources directory, so you do not
# need to install them on your system at all.
# Use launch.sh to start poezio directly from here
error() {
echo -e "\033[1;31mThe script failed to update $1.\033[0m"
echo -e "\033[1;31mPlease investigate.\033[0m"
exit 1
}
echo 'Updating poezio'
git pull origin master || error poezio
make
if [ $? -ne 0 ]
then
echo -e "It seems that you do not have the python development"\
"files.\nSearch for a package named python3-dev or python3-devel"\
"in your repos."
exit -1
fi
if [ -e "SleekXMPP" ]
then
echo "Removing the old SleekXMPP"
rm -rf SleekXMPP
rm src/sleekxmpp
git clone https://github.com/fritzy/SleekXMPP.git Sleek || error SleekXMPP
fi
if [ -e "Sleek" ]
then
echo "Updating SleekXMPP"
cd Sleek
git pull || error SleekXMPP
cd ..
else
echo "Downloading SleekXMPP"
git clone https://github.com/fritzy/SleekXMPP.git Sleek || error SleekXMPP
fi
if [ -e ".dnspython.tgz" ]
then
if [ -e "dnspython" ]
then
echo "dnspython up to date"
else
echo "Restoring dnspython"
tar xfz .dnspython.tgz
mv dnspython3-1.10.0 dnspython
fi
else
echo "Downloading dnspython"
wget -c -q -O .dnspython.tgz http://www.dnspython.org/kits3/1.10.0/dnspython3-1.10.0.tar.gz || error dnspython
rm -fr dnspython
tar xfz .dnspython.tgz
mv dnspython3-1.10.0 dnspython
fi
cd src
if [ -h "dns" ]
then
echo 'Link src/dns already exists'
else
echo "Creating link src/dns"
ln -s ../dnspython/dns dns
fi
if [ -h "sleekxmpp" ]
then
echo 'Link src/sleekxmpp already exists'
else
echo "Creating link src/sleekxmpp"
ln -s ../Sleek/sleekxmpp sleekxmpp
fi
|