-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-aesop.sh
executable file
·111 lines (101 loc) · 2.75 KB
/
install-aesop.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#
# Helper script to install Aesop. If you wish to only localize files
# without building, use the argument --no-build.
#
set -e
set -u
build=1
# Process some arguments
TEMP=`getopt -o n --long no-build -n 'install-aesop.sh' -- "$@"`
if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi
eval set -- "$TEMP"
set +u
while true ; do
case "$1" in
-n | --no-build) build=0; echo "Will not extract/build" ; shift ;;
--) shift ; break ;;
*) echo "Internal error!" ; exit 1 ;;
esac
done
if [ "$1" != "" ]; then
echo "Unrecognized argument: $1"
exit 1
fi
set -u
# Helper function - If argument 1 doesn't exist, a download from
# argument 2 is performed.
download_if_absent()
{
set +u
FILENAME=$1
URL=$2
set -u
if [ -z $FILENAME ] || [ -z $URL ]; then
echo Internal error, download_if_absent FILENAME = $FILENAME URL = $URL
exit 1
fi
if [ ! -f ${FILENAME} ]; then
echo "${PWD}/${FILENAME} does not exist, downloading from $URL"
wget ${URL}
else
echo "${PWD}/${FILENAME} exists, will not download"
fi
}
# Structure
AEPKG=${PWD}/aesop-pkgs
PFX=${PWD}
mkdir -p ${AEPKG}
# Download and install libev
cd ${AEPKG}
LIBEV_NAME=libev-4.22
download_if_absent ${LIBEV_NAME}.tar.gz http://dist.schmorp.de/libev/Attic/libev-4.22.tar.gz
if [ "${build}" = "1" ]; then
tar xf ${LIBEV_NAME}.tar.gz
cd ${LIBEV_NAME}
./configure --prefix=${PFX}
make install
fi
# Download and install libopa
cd ${AEPKG}
OPENPA_NAME=openpa-1.0.4
OPENPA_AR_NAME=v1.0.4.tar.gz
download_if_absent ${OPENPA_AR_NAME} https://github.com/pmodels/openpa/archive/${OPENPA_AR_NAME}
if [ "${build}" = "1" ]; then
tar xf ${OPENPA_AR_NAME}
cd ${OPENPA_NAME}
./autogen.sh
./configure --prefix=${PFX}
make install
fi
# Download and install libcutils
LIBCUTILS_NAME=c-utils-0.1
cd ${AEPKG}
download_if_absent ${LIBCUTILS_NAME}.tar.gz ftp://ftp.mcs.anl.gov/pub/aesop/download/${LIBCUTILS_NAME}.tar.gz
if [ "${build}" = "1" ]; then
tar xf ${LIBCUTILS_NAME}.tar.gz
cd ${LIBCUTILS_NAME}
./configure --prefix=${PFX}
make install
fi
# Download and install aesop-blocking-parser
cd ${AEPKG}
AEBP_NAME=ae-blocking-parser-linux-x86_64-0.2
download_if_absent ${AEBP_NAME}.tar.gz ftp://ftp.mcs.anl.gov/pub/aesop/download/${AEBP_NAME}.tar.gz
if [ "${build}" = "1" ]; then
tar xf ${AEBP_NAME}.tar.gz
cd ${AEBP_NAME}
./configure --prefix=${PFX}
make install
fi
# Download and install aesop
AECC_NAME=aesop-0.2.1
cd ${AEPKG}
download_if_absent ${AECC_NAME}.tar.gz ftp://ftp.mcs.anl.gov/pub/aesop/download/${AECC_NAME}.tar.gz
if [ "${build}" = "1" ]; then
tar xf ${AECC_NAME}.tar.gz
cd ${AECC_NAME}
./configure --prefix=${PFX} \
PKG_CONFIG_PATH=${PFX}/lib/pkgconfig \
AE_BLOCKING_PARSER=${PFX}/bin/ae-blocking-parser
make install
fi