libnfc/make_release.sh

57 lines
1.4 KiB
Bash
Raw Normal View History

#! /bin/sh
# Stop script on first error.
set -e
# Retrieve libnfc version from configure.ac
LIBNFC_VERSION=$(grep AC_INIT configure.ac | sed 's/^.*(\(.*\))/\1/g' | awk -F', ' '{ print $2 }')
# Easiest part: GNU/linux, BSD and other POSIX systems.
LIBNFC_AUTOTOOLS_ARCHIVE=libnfc-$LIBNFC_VERSION.tar.gz
echo ">>> Cleaning sources..."
2010-04-26 12:58:17 +00:00
# First, clean what we can
rm -f configure config.h config.h.in
2010-04-26 12:58:17 +00:00
autoreconf -is && ./configure && make distclean
svn propget svn:ignore . | xargs rm -rf
echo "<<< Sources cleaned."
2010-04-26 12:58:17 +00:00
if [ ! -f $LIBNFC_AUTOTOOLS_ARCHIVE ]; then
echo ">>> Autotooled archive generation..."
2010-01-14 15:54:55 +00:00
2010-03-31 13:54:31 +00:00
# Second, generate dist archive (and test it)
2010-04-26 12:58:17 +00:00
autoreconf -is && ./configure && make distcheck
2010-03-31 13:54:31 +00:00
# Finally, clean up
2010-01-18 11:20:38 +00:00
make distclean
echo "<<< Autotooled archive generated."
else
echo "--- Autotooled archive (GNU/Linux, BSD, etc.) is already done: skipped."
fi
# Documentation part
LIBNFC_DOC_DIR=libnfc-doc-$LIBNFC_VERSION
LIBNFC_DOC_ARCHIVE=$LIBNFC_DOC_DIR.zip
if [ ! -f $LIBNFC_DOC_ARCHIVE ]; then
echo ">>> Documentation archive generation..."
2010-01-18 11:20:38 +00:00
if [ -d $LIBNFC_DOC_DIR ]; then
rm -rf $LIBNFC_DOC_DIR
fi
# Build documentation
2010-03-31 13:54:31 +00:00
autoreconf -is && ./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
2010-01-18 11:20:38 +00:00
rm -rf $LIBNFC_DOC_DIR
make distclean
echo "<<< Documentation archive generated."
else
echo "--- Documentation archive is already done: skipped."
fi