forked from emcrisostomo/fswatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-from-scratch.sh
executable file
·156 lines (140 loc) · 3.68 KB
/
build-from-scratch.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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/bin/zsh
# -*- vim:fenc=utf-8:et:sw=2:ts=2:sts=2
#
# Copyright (c) 2014-2015 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 verbose_flag
typeset -a version_flag
VERBOSE=0
typeset -a configure_opts
REQUIRED_PROGS=( doxygen 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) 2017 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 by performing the following steps:"
print -- " - Run the maintainer-clean target."
print -- " - Bootstrap the autotools."
print -- " - Configure the package."
print -- " - Run the distcheck target."
print -- " - Run the maintainer-clean target."
print
print -- "Options:"
print -- " -h, --help Print this message."
print -- " -v, --verbose Print verbose output."
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 \
v=verbose_flag -verbose=verbose_flag \
-version=version_flag
if (( ${+help_flag[1]} > 0 ))
then
print_usage
exit 0
fi
if (( ${+verbose_flag[1]} > 0 ))
then
VERBOSE=1
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
}
if (( ${VERBOSE} > 0 ))
then
configure_opts=( --enable-silent-rules )
else
configure_opts=( --disable-silent-rules )
fi
cd ${PROGDIR}
make maintainer-clean || true
rm -rf dist
./autogen.sh
./configure ${configure_opts}
make -j distcheck
make -C fswatch html pdf
make -C ${LIBFSWATCH_DOC_DIR} doxygen
mkdir -p dist/fswatch/pdf
mkdir -p dist/libfswatch/pdf
cp -r ${LIBFSWATCH_DOC_DIR}/html dist/libfswatch
cp ${LIBFSWATCH_DOC_DIR}/latex/refman.pdf dist/libfswatch/pdf
cp -r ${FSWATCH_DOC_DIR}/fswatch.html dist/fswatch
cp ${FSWATCH_DOC_DIR}/fswatch.pdf dist/fswatch/pdf
make maintainer-clean
# 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: