-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
91 lines (86 loc) · 2.3 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
84
85
86
87
88
89
90
91
#!/bin/bash
# https://github.com/NaokiHori/SimpleDecomp
# Description
#
# This script installs SimpleDecomp library to your machine,
# so that you can use them without including
# the sources src/sdecomp/* and the header include/sdecomp.h
# to your project.
#
# Usage (install)
#
# $ bash install.sh install
#
# This will create
# a dynamic library libsdecomp.so
# a header file sdecomp.h
# to a specified place (default: ${HOME}/.local)
#
# Usage (uninstall)
#
# $ bash install.sh uninstall
#
# This will remove
# a dynamic library libsdecomp.so
# a header file sdecomp.h
# from a specified place (default: ${HOME}/.local)
#
# Confirm that you have a proper permission.
# installation parameters
prefix=${HOME}/.local
dynlib=${prefix}/lib/libsdecomp.so
header=${prefix}/include/sdecomp.h
cflags="-std=c99 -O3 -Wall -Wextra"
# check number of arguments is 1
if [ "$#" -ne 1 ]; then
echo "Give one of \"install\" or \"uninstall\""
exit 1
fi
arg="${1}"
# check the argument is "install" or "uninstall", and process
if [ "${arg}" = "install" ]; then
echo "Install to ${prefix}"
# check place to install
dname=$(dirname ${dynlib})
if [ ! -e "${dname}" ]; then
echo "Create directory: ${dname}"
mkdir -p "${dname}"
fi
dname=$(dirname ${header})
if [ ! -e "${dname}" ]; then
echo "Create directory: ${dname}"
mkdir -p "${dname}"
fi
# create object files
# NOTE: not good to iterate over find...
srcs=$(find src/sdecomp -type f -name "*.c")
for src in ${srcs[@]}; do
obj=${src/src/obj}
obj=${obj/.c/.o}
if [ ! -e $(dirname ${obj}) ]; then
mkdir -p $(dirname ${obj})
fi
mpicc -Iinclude ${cflags} -fPIC -c ${src} -o ${obj}
done
# create dynamic library
echo "Dynamic library ${dynlib} is created"
mpicc -Iinclude ${cflags} -fPIC -shared $(find obj/sdecomp -type f -name "*.o") -o ${dynlib}
# copy header
echo "Header ${header} is created"
cp include/sdecomp.h ${header}
elif [ "${arg}" = "uninstall" ]; then
echo "Uninstall from ${prefix}"
# remove dynamic library
if [ -e ${dynlib} ]; then
echo "Dynamic library ${dynlib} is removed"
rm ${dynlib}
fi
# remove header
if [ -e ${header} ]; then
echo "Header ${header} is removed"
rm ${header}
fi
else
echo "Give one of \"install\" or \"uninstall\""
exit 1
fi