-
Notifications
You must be signed in to change notification settings - Fork 442
/
make_release.sh
executable file
·58 lines (45 loc) · 1.57 KB
/
make_release.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
#! /bin/sh
# Stop script on first error.
set -e
# Retrieve libnfc version from configure.ac
LIBNFC_VERSION=$(grep AC_INIT configure.ac | sed 's/^.*\[libnfc\],\[\(.*\)\],\[.*/\1/g')
echo "=== Building release archive for libnfc $LIBNFC_VERSION ==="
# Easiest part: GNU/linux, BSD and other POSIX systems.
LIBNFC_AUTOTOOLS_ARCHIVE=libnfc-$LIBNFC_VERSION.tar.gz
echo ">>> Cleaning sources..."
# First, clean what we can
rm -f configure config.h config.h.in
autoreconf -is --force && ./configure && make distclean
git clean -dfX
echo "<<< Sources cleaned."
if [ ! -f $LIBNFC_AUTOTOOLS_ARCHIVE ]; then
echo ">>> Autotooled archive generation..."
# Second, generate dist archive (and test it)
autoreconf -is --force && ./configure && make distcheck
# Finally, clean up
make distclean
echo "<<< Autotooled archive generated."
else
echo "--- Autotooled archive (GNU/Linux, BSD, etc.) is already done: skipped."
fi
# Documentation part
echo "=== Building documentation archive for libnfc $LIBNFC_VERSION ==="
LIBNFC_DOC_DIR=libnfc-doc-$LIBNFC_VERSION
LIBNFC_DOC_ARCHIVE=$LIBNFC_DOC_DIR.zip
if [ ! -f $LIBNFC_DOC_ARCHIVE ]; then
echo ">>> Documentation archive generation..."
if [ -d $LIBNFC_DOC_DIR ]; then
rm -rf $LIBNFC_DOC_DIR
fi
# Build documentation
autoreconf -is --force && ./configure --enable-doc && make doc || false
# Create archive
cp -r doc/html $LIBNFC_DOC_DIR
zip -r $LIBNFC_DOC_ARCHIVE $LIBNFC_DOC_DIR
# Clean up
rm -rf $LIBNFC_DOC_DIR
make distclean
echo "<<< Documentation archive generated."
else
echo "--- Documentation archive is already done: skipped."
fi