-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
83 lines (75 loc) · 1.85 KB
/
install.sh
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
79
80
81
82
83
#!/bin/bash
install() {
echo "Installing github.com/isazi/utils"
cd "${SOURCE_ROOT}"
git clone -b ${BRANCH} -q https://github.com/isazi/utils.git
cd utils
mkdir build
cd build
cmake ${CMAKE_BUILD_ARGUMENTS} ..
${MAKE} install
echo
echo "Installing github.com/isazi/OpenCL"
cd "${SOURCE_ROOT}"
git clone -b ${BRANCH} -q https://github.com/isazi/OpenCL.git
cd OpenCL
mkdir build
cd build
cmake ${CMAKE_BUILD_ARGUMENTS} ..
${MAKE} install
echo
echo "Installing github.com/TRASAL/AstroData"
cd "${SOURCE_ROOT}"
git clone -b ${BRANCH} -q https://github.com/TRASAL/AstroData.git
cd AstroData
mkdir build
cd build
cmake ${CMAKE_BUILD_ARGUMENTS} ..
${MAKE} install
echo
echo "Installing github.com/TRASAL/Dedispersion"
cd "${SOURCE_ROOT}"
git clone -b ${BRANCH} -q https://github.com/TRASAL/Dedispersion.git
cd Dedispersion
mkdir build
cd build
cmake ${CMAKE_BUILD_ARGUMENTS} ..
${MAKE} install
echo
echo "Installing github.com/TRASAL/Integration"
cd "${SOURCE_ROOT}"
git clone -b ${BRANCH} -q https://github.com/TRASAL/Integration.git
cd Integration
mkdir build
cd build
cmake ${CMAKE_BUILD_ARGUMENTS} ..
${MAKE} install
echo
echo "Installing github.com/TRASAL/SNR"
cd "${SOURCE_ROOT}"
git clone -b ${BRANCH} -q https://github.com/TRASAL/SNR.git
cd SNR
mkdir build
cd build
cmake ${CMAKE_BUILD_ARGUMENTS} ..
${MAKE} install
echo
echo "Installing github.com/TRASAL/RFIm"
cd "${SOURCE_ROOT}"
git clone -b ${BRANCH} -q https://github.com/TRASAL/RFIm.git
cd RFIm
mkdir build
cd build
cmake ${CMAKE_BUILD_ARGUMENTS} ..
${MAKE} install
echo
echo "Installing github.com/TRASAL/AMBER"
cd "${SOURCE_ROOT}"
git clone -b ${BRANCH} -q https://github.com/TRASAL/AMBER.git
cd AMBER
mkdir build
cd build
cmake ${CMAKE_BUILD_ARGUMENTS} ..
${MAKE} install
echo
}