diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-18 14:33:11 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-18 14:33:11 +0200 |
commit | 3a7acdf1d8b6d46b28aa748c6df84f3866d6d6f3 (patch) | |
tree | ac221cbb936a6dab43a59a6b4e46f2d54d56fb12 /libsqlite/configure | |
parent | c16dca3fb1aab5d8a4514b882712d74583a4ff71 (diff) |
Add import stub for libsqlite
Diffstat (limited to 'libsqlite/configure')
-rwxr-xr-x | libsqlite/configure | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/libsqlite/configure b/libsqlite/configure new file mode 100755 index 0000000..3bbf936 --- /dev/null +++ b/libsqlite/configure @@ -0,0 +1,55 @@ +#! /usr/bin/env bash + +# file : build/import/libsqlite/configure +# author : Boris Kolpackov <boris@codesynthesis.com> +# 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 |