
Base Reference GNU/Linux Build Sequence
Source code is available here.
To compile and install, run these commands:
cd /sources/ &&
tar -xzf sqlite-3.6.16.tar.gz &&
cd sqlite-3.6.16 &&
./configure --prefix=/usr &&
make &&
make install |
The output should look something like this:
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for gcc... gcc -s
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc -s accepts -g... yes
checking for gcc -s option to accept ISO C89... none needed
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
.
.
.
/bin/install -c -d /usr/bin
./libtool --mode=install /bin/install -c sqlite3 /usr/bin
libtool: install: /bin/install -c .libs/sqlite3 /usr/bin/sqlite3
/bin/install -c -d /usr/include
/bin/install -c -m 0644 sqlite3.h /usr/include
/bin/install -c -m 0644 ./src/sqlite3ext.h /usr/include
/bin/install -c -d /usr/lib/pkgconfig
/bin/install -c -m 0644 sqlite3.pc /usr/lib/pkgconfig
|