forked from pmodels/izem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autogen.sh
executable file
·46 lines (37 loc) · 1.24 KB
/
autogen.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
#! /bin/sh
########################################################################
## Utility functions
########################################################################
warn() {
echo "===> WARNING: $@"
}
error() {
echo "===> ERROR: $@"
}
echo_n() {
# "echo -n" isn't portable, must portably implement with printf
printf "%s" "$*"
}
########################################################################
## Building maint/version
########################################################################
echo_n "Generating a helper maint/version... "
if autom4te -l M4sugar maint/version.base.m4 > maint/version ; then
echo "done"
else
echo "error"
error "unable to correctly generate maint/version shell helper"
fi
########################################################################
## Building the README
########################################################################
echo_n "Updating README... "
. ./maint/version
if [ -f README.md ] ; then
sed -e "s/%VERSION%/${ZM_VERSION}/g" README.md > README
echo "done"
else
echo "error"
error "README.md file not present, unable to update the README version number (perhaps we are running in a release tarball source tree?)"
fi
autoreconf -vif