forked from ntop/ntopng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autogen.sh
executable file
·45 lines (39 loc) · 1.11 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
#!/usr/bin/env bash
TODAY=`date +%y%m%d`
MAJOR_RELEASE="3"
MINOR_RELEASE="9"
SHORT_VERSION="$MAJOR_RELEASE.$MINOR_RELEASE"
VERSION="$SHORT_VERSION.$TODAY"
if test -d ".git"; then
GIT_TAG=`git rev-parse HEAD`
GIT_DATE=`date +%Y%m%d`
GIT_RELEASE="$GIT_TAG:$GIT_DATE"
GIT_BRANCH=`git rev-parse --abbrev-ref HEAD | sed "s/heads\///g"`
else
GIT_RELEASE="$VERSION"
GIT_DATE=`date`
GIT_BRANCH=""
fi
if test -d "pro"; then
PRO_GIT_RELEASE=`cd pro; git log --pretty=oneline | wc -l`
PRO_GIT_RELEASE=${PRO_GIT_RELEASE//[[:blank:]]/}
PRO_GIT_DATE=`cd pro; git log --pretty=medium -1 | grep "^Date:" | cut -d " " -f 4-`
else
PRO_GIT_RELEASE=""
PRO_GIT_DATE=""
fi
cat configure.seed | sed \
-e "s/@VERSION@/$VERSION/g" \
-e "s/@SHORT_VERSION@/$SHORT_VERSION/g" \
-e "s/@GIT_TAG@/$GIT_TAG/g" \
-e "s/@GIT_DATE@/$GIT_DATE/g" \
-e "s/@GIT_RELEASE@/$GIT_RELEASE/g" \
-e "s/@GIT_BRANCH@/$GIT_BRANCH/g" \
-e "s/@PRO_GIT_RELEASE@/$PRO_GIT_RELEASE/g" \
-e "s/@PRO_GIT_DATE@/$PRO_GIT_DATE/g" \
> configure.ac
rm -f config.h config.h.in *~ #*
echo "Wait please..."
autoreconf -if
echo ""
echo "Now run ./configure"