From 62e7abd564f6f9c7a3ab9e7e469853c93bd0e4c9 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 18 Mar 2011 14:31:14 +0200 Subject: Add libsqlite import stub --- build/import/libsqlite/configure | 55 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100755 build/import/libsqlite/configure (limited to 'build/import/libsqlite/configure') diff --git a/build/import/libsqlite/configure b/build/import/libsqlite/configure new file mode 100755 index 0000000..3bbf936 --- /dev/null +++ b/build/import/libsqlite/configure @@ -0,0 +1,55 @@ +#! /usr/bin/env bash + +# file : build/import/libsqlite/configure +# author : Boris Kolpackov +# copyright : Copyright (c) 2009-2011 Boris Kolpackov +# license : GNU GPL v2; see accompanying LICENSE file + + +# $1 - out config file +# +# bld_root - build root +# project_name - project name +# + +source $bld_root/dialog.bash + + +$echo +$echo "Configuring external dependency on 'SQLite library' for '$project_name'." +$echo + +$echo +$echo "Would you like to configure dependency on the installed version" +$echo "of 'SQLite library' as opposed to the development build?" +$echo + +installed=`read_y_n y` + +path= +type= + +if [ "$installed" = "n" ]; then + + $echo + $echo "Please enter the 'SQLite library' root directory." + $echo + + root=`read_path --directory --exist` + + $echo + $echo "Please select the library type you would like to use:" + $echo + $echo "(1) archive" + $echo "(2) shared object" + $echo + + type=`read_option "archive shared" "shared"` +fi + +echo libsqlite_installed := $installed >$1 + +if [ "$installed" = "n" ]; then + echo libsqlite_root := $root >>$1 + echo libsqlite_type := $type >>$1 +fi -- cgit v1.1