summaryrefslogtreecommitdiff
path: root/init.sh
blob: a0352327b7bd8c61835ec63f050703cca11debf6 (plain) (blame)
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
#!/bin/bash

CMD="$1"
PROTO="git@gitorious.org:"
if [[ -z "${CMD}" ]]; then
    export CMD="default"
fi

STR=$(git remote -v|grep "https://")
if [[ -n "${STR}" ]]; then
    export PROTO="https://gitorious.org/"
fi

if [[ "${CMD}" == "all" || "${CMD}" == "default" ]]; then
    git clone ${PROTO}evol/clientdata.git client-data
    git clone ${PROTO}evol/hercules.git server-code
    git clone ${PROTO}evol/serverdata.git server-data
    git clone ${PROTO}evol/evol-tools.git tools
    git clone ${PROTO}evol/evol-hercules.git server-code/src/evol
    git clone ${PROTO}evol/evol-local.git server-local
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "server" ]]; then
    git clone ${PROTO}evol/hercules.git server-code
    git clone ${PROTO}evol/serverdata.git server-data
    git clone ${PROTO}evol/evol-hercules.git server-code/src/evol
    git clone ${PROTO}evol/evol-tools.git tools
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "client" ]]; then
    git clone ${PROTO}evol/clientdata.git client-data
    git clone ${PROTO}evol/evol-tools.git tools
elif [[ "${CMD}" == "music" ]]; then
    git clone ${PROTO}evol/evol-music.git music
elif [[ "${CMD}" == "local" ]]; then
    git clone ${PROTO}evol/evol-local.git server-local
    git clone ${PROTO}evol/hercules.git server-code
    git clone ${PROTO}evol/serverdata.git server-data
    git clone ${PROTO}evol/evol-hercules.git server-code/src/evol
    git clone ${PROTO}evol/evol-tools.git tools
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "tools" ]]; then
    git clone ${PROTO}evol/evol-tools.git tools
elif [[ "${CMD}" == "manaplus" ]]; then
    git clone ${PROTO}manaplus/manaplus.git manaplus
fi

if [[ "${CMD}" == "all" ]]; then
    git clone ${PROTO}evol/evol-music.git music
    git clone ${PROTO}manaplus/manaplus.git manaplus
fi