===== Sqliteman =====
> What's Sqliteman? The best developer's and/or admin's GUI tool for Sqlite3 in the world. No joking here (or just a bit only) - it contains the most complete feature set of all tools available.
http://sqliteman.com/
=== Setup sqliteman source package from Ubuntu MOTU ===
== Fetch source package artifacts ==
wget https://launchpad.net/ubuntu/+archive/primary/+files/sqliteman_1.2.1.orig.tar.gz
wget https://launchpad.net/ubuntu/+archive/primary/+files/sqliteman_1.2.1-0ubuntu1.diff.gz
wget https://launchpad.net/ubuntu/+archive/primary/+files/sqliteman_1.2.1-0ubuntu1.dsc
via: https://launchpad.net/ubuntu/+source/sqliteman
== Build binary package ==
dpkg-source -x sqliteman_1.2.1-0ubuntu1.dsc
cd sqliteman-1.2.1/
dpkg-buildpackage -rfakeroot -b
... says something about:\\
''dpkg-checkbuilddeps: Unmet build dependencies: libqt4-dev cmake libqscintilla2-dev quilt''
# so:
aptitude install libqt4-dev cmake libqscintilla2-dev quilt
# and again:
dpkg-buildpackage -rfakeroot -b
via: http://www.debian.org/doc/FAQ/ch-pkg_basics.en.html#s-sourcebuild
== Install package ==
cd ..
sudo dpkg -i sqliteman_1.2.1-0ubuntu1_i386.deb
{{tag>sqlite dpkg packaging}}