$ tar xzf sqlite-3.3.5.tar.gz
$ mkdir bld
$ cd bld
bld$ cd bld
bld$ ../sqlite-3.3.5/configure --disable-tcl
bld$ make
bld$ mkdir ~/bin
bld$ cp -p sqlite3 ~/bin/. とりあえずシェルコマンドだけを使いやすいところにコピー ※1
bld$ cd
$
※1 実体は bld/ の中です
$ ~/bin/sqlite3 FileName
※緑色は SQLite のプロンプトです
SQLite version 3.3.5
Enter ".help" for instructions
sqlite> create table table1 (name varchar(10), value integer);
sqlite> insert into table1 values ('apple', 100) ;
sqlite> insert into table1 values ('orange', 150) ;
sqlite> select * from table1 ;
sqlite> .quit