2013-08-29 13:11:18 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# This script is used to build the amalgamation autoconf package.
|
|
|
|
# It assumes the following:
|
|
|
|
#
|
|
|
|
# 1. The files "sqlite3.c", "sqlite3.h" and "sqlite3ext.h"
|
|
|
|
# are available in the current directory.
|
|
|
|
#
|
|
|
|
# 2. Variable $TOP is set to the full path of the root directory
|
|
|
|
# of the SQLite source tree.
|
|
|
|
#
|
|
|
|
# 3. There is nothing of value in the ./mkpkg_tmp_dir directory.
|
|
|
|
# This is important, as the script executes "rm -rf ./mkpkg_tmp_dir".
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
# Bail out of the script if any command returns a non-zero exit
|
|
|
|
# status. Or if the script tries to use an unset variable. These
|
|
|
|
# may fail for old /bin/sh interpreters.
|
|
|
|
#
|
|
|
|
set -e
|
|
|
|
set -u
|
|
|
|
|
|
|
|
TMPSPACE=./mkpkg_tmp_dir
|
|
|
|
VERSION=`cat $TOP/VERSION`
|
2016-02-23 15:07:39 +00:00
|
|
|
HASH=`sed 's/^\(..........\).*/\1/' $TOP/manifest.uuid`
|
|
|
|
DATETIME=`grep '^D' $TOP/manifest | sed -e 's/[^0-9]//g' -e 's/\(............\).*/\1/'`
|
2013-08-29 13:11:18 +00:00
|
|
|
|
2016-02-23 15:07:39 +00:00
|
|
|
# If this script is given an argument of --snapshot, then generate a
|
|
|
|
# snapshot tarball named for the current checkout SHA1 hash, rather than
|
|
|
|
# the version number.
|
|
|
|
#
|
|
|
|
if test "$#" -ge 1 -a x$1 != x--snapshot
|
|
|
|
then
|
|
|
|
# Set global variable $ARTIFACT to the "3xxyyzz" string incorporated
|
|
|
|
# into artifact filenames. And $VERSION2 to the "3.x.y[.z]" form.
|
|
|
|
xx=`echo $VERSION|sed 's/3\.\([0-9]*\)\..*/\1/'`
|
|
|
|
yy=`echo $VERSION|sed 's/3\.[^.]*\.\([0-9]*\).*/\1/'`
|
|
|
|
zz=0
|
|
|
|
set +e
|
|
|
|
zz=`echo $VERSION|sed 's/3\.[^.]*\.[^.]*\.\([0-9]*\).*/\1/'|grep -v '\.'`
|
|
|
|
set -e
|
|
|
|
TARBALLNAME=`printf "sqlite-autoconf-3%.2d%.2d%.2d" $xx $yy $zz`
|
|
|
|
else
|
|
|
|
TARBALLNAME=sqlite-snapshot-$DATETIME
|
|
|
|
fi
|
2013-08-29 13:11:18 +00:00
|
|
|
|
|
|
|
rm -rf $TMPSPACE
|
2016-02-23 15:07:39 +00:00
|
|
|
cp -R $TOP/autoconf $TMPSPACE
|
|
|
|
cp sqlite3.c $TMPSPACE
|
|
|
|
cp sqlite3.h $TMPSPACE
|
|
|
|
cp sqlite3ext.h $TMPSPACE
|
|
|
|
cp $TOP/sqlite3.1 $TMPSPACE
|
|
|
|
cp $TOP/sqlite3.pc.in $TMPSPACE
|
|
|
|
cp $TOP/src/shell.c $TMPSPACE
|
|
|
|
cp $TOP/src/sqlite3.rc $TMPSPACE
|
2013-08-29 13:11:18 +00:00
|
|
|
|
|
|
|
cat $TMPSPACE/configure.ac |
|
2016-02-23 15:07:39 +00:00
|
|
|
sed "s/--SQLITE-VERSION--/$VERSION/" > $TMPSPACE/tmp
|
2013-08-29 13:11:18 +00:00
|
|
|
mv $TMPSPACE/tmp $TMPSPACE/configure.ac
|
|
|
|
|
|
|
|
cd $TMPSPACE
|
2016-02-23 15:07:39 +00:00
|
|
|
autoreconf -i
|
|
|
|
#libtoolize
|
|
|
|
#aclocal
|
|
|
|
#autoconf
|
|
|
|
#automake --add-missing
|
2013-08-29 13:11:18 +00:00
|
|
|
|
|
|
|
mkdir -p tea/generic
|
|
|
|
echo "#ifdef USE_SYSTEM_SQLITE" > tea/generic/tclsqlite3.c
|
|
|
|
echo "# include <sqlite3.h>" >> tea/generic/tclsqlite3.c
|
|
|
|
echo "#else" >> tea/generic/tclsqlite3.c
|
2015-03-20 14:04:26 +00:00
|
|
|
echo "#include \"sqlite3.c\"" >> tea/generic/tclsqlite3.c
|
2013-08-29 13:11:18 +00:00
|
|
|
echo "#endif" >> tea/generic/tclsqlite3.c
|
|
|
|
cat $TOP/src/tclsqlite.c >> tea/generic/tclsqlite3.c
|
|
|
|
|
2015-03-20 14:04:26 +00:00
|
|
|
cat tea/configure.ac |
|
2013-08-29 13:11:18 +00:00
|
|
|
sed "s/AC_INIT(\[sqlite\], .*)/AC_INIT([sqlite], [$VERSION])/" > tmp
|
2015-03-20 14:04:26 +00:00
|
|
|
mv tmp tea/configure.ac
|
2013-08-29 13:11:18 +00:00
|
|
|
|
|
|
|
cd tea
|
|
|
|
autoconf
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
|
|
|
|
cd ../
|
|
|
|
./configure && make dist
|
|
|
|
tar -xzf sqlite-$VERSION.tar.gz
|
2016-02-23 15:07:39 +00:00
|
|
|
mv sqlite-$VERSION $TARBALLNAME
|
|
|
|
tar -czf $TARBALLNAME.tar.gz $TARBALLNAME
|
|
|
|
mv $TARBALLNAME.tar.gz ..
|
|
|
|
cd ..
|
|
|
|
ls -l $TARBALLNAME.tar.gz
|