Results 1 to 1 of 1

Thread: Install SQLite from source

  1. #1
    Join Date
    Mar 2006
    Beans
    54

    Install SQLite from source

    The quick steps follow.
    For more detailed notes, installing in /opt and useful links see attachment.

    1. Download
      $ wget http://sqlite.org/2015/sqlite-autoconf-3090200.tar.gz
      [but check sqlite.org for most current version]
      .
    2. Move file to /usr/local/src/
      .
    3. Extract:
      $ sudo tar -xvf sqlite-autoconf-3090200.tar.gz
      .
    4. Install packages needed for compile-make-install:
      $ sudo aptitude install build-essential
      .
    5. Install packages needed for readline integration:
      $ sudo aptitude install libreadline-dev libreadline6-dev libreadline6-dbg
      .
    6. Configure-Make-Install
      $ cd sqlite-autoconf-3090200
      $ CFLAGS="-Os" ./configure --enable-readline
      $ make
      $ sudo make install
    Attached Files Attached Files

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •