-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathfull-build-with-cmake.zsh
executable file
·143 lines (128 loc) · 3.27 KB
/
full-build-with-cmake.zsh
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#!/bin/zsh
# -*- vim:fenc=utf-8:et:sw=2:ts=2:sts=2
#
# Copyright (c) 2014-2024 Enrico M. Crisostomo
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 3, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
#
setopt local_options
setopt local_traps
unsetopt glob_subst
set -o errexit
set -o nounset
PROGNAME=${0:t}
PROGDIR=${0:h}
PACKAGE_VERSION=1.0.0
typeset -r LIBFSWATCH_DOC_DIR=libfswatch/doc/doxygen
typeset -r FSWATCH_DOC_DIR=fswatch/doc
typeset -i ARGS_PROCESSED=0
typeset -a help_flag
typeset -a version_flag
typeset -a configure_opts
REQUIRED_PROGS=( git )
for p in ${REQUIRED_PROGS}
do
command -v ${p} > /dev/null 2>&1 ||
{
>&2 print -- Cannot find required program: ${p}
exit 1
}
done
print_version()
{
print -- "${PROGNAME} ${PACKAGE_VERSION}"
print -- "Copyright (C) 2024 Enrico M. Crisostomo"
print -- "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>."
print -- "This is free software: you are free to change and redistribute it."
print -- "There is NO WARRANTY, to the extent permitted by law."
print
print -- "Written by Enrico M. Crisostomo"
}
print_usage()
{
print -- "${PROGNAME}"
print
print -- "Usage:"
print -- "${PROGNAME}"
print
print -- "Build the package from scratch using CMake:"
print -- " - Clean the source tree using: git clean -xfd"
print -- " - Bootstrap the CMake build in build/"
print -- " - Make the package"
print
print -- "Options:"
print -- " --version Print the program version."
}
parse_opts()
{
while getopts ":" opt
do
case $opt in
\?)
>&2 print -- Invalid option -${OPTARG}.
exit 1
;;
esac
done
ARGS_PROCESSED=$((OPTIND - 1))
}
# main
zparseopts -D \
h=help_flag -help=help_flag \
-version=version_flag
if (( ${+help_flag[1]} > 0 ))
then
print_usage
exit 0
fi
if (( ${+version_flag[1]} > 0 ))
then
print_version
exit 0
fi
parse_opts $* && shift ${ARGS_PROCESSED}
(( $# == 0 )) ||
{
>&2 print -- "Invalid number of arguments."
exit 1
}
print -- "This script will clean up the source tree, bootstrap the CMake build,"
print -- "and build fswatch. Are you sure you want to continue? [y/N]"
read -k1 -q
if [[ ${REPLY} == [yY] ]] ; then
print -- "Cleaning up the source tree..."
git clean -xfd
print -- "Bootstrapping the CMake build..."
mkdir build
print -- "Configuring the package..."
mkdir -p build
cd build
cmake ..
print -- "Building the package..."
make
print -- "Running the tests..."
make test
print -- "Build was successful."
else
print -- "Aborted."
fi
# Local variables:
# coding: utf-8
# mode: sh
# eval: (sh-set-shell "zsh")
# tab-width: 2
# indent-tabs-mode: nil
# sh-basic-offset: 2
# sh-indentation: 2
# End: