SPELL=sqlite VERSION=3.8.11.1 VERSIONX=autoconf-$(echo ${VERSION} | awk \ 'BEGIN { FS="."; OFS=""; ORS="" } { print $1; for (i=2; i<=NF; i++) {printf ("%02d", ($i))} }') SOURCE_HASH=sha512:b87e3a94462c26e875833c7f83dcc453146377a403d173169e2db7198bede2467f8c480645141da678e0fd3071764558f2dd2630086964431ead25ac43212ee6 SOURCE_DIRECTORY="$BUILD_DIRECTORY/${SPELL}-${VERSIONX}" SOURCE=${SPELL}-${VERSIONX}.tar.gz SOURCE_URL[0]=http://www.sqlite.org/2015/$SOURCE LICENSE[0]=PD WEB_SITE=http://www.sqlite.org/ ENTERED=20011016 KEYWORDS="sql database" SHORT="SQL engine in a C library" cat << EOF SQLite is a C library that implements an SQL database engine. A large subset of SQL92 is supported. A complete database is stored in a single disk file. The API is designed for convenience and ease of use. Applications that link against SQLite can enjoy the power and flexiblity of an SQL database without the administrative hassles of supporting a separate database server. Because it omits the client-server interaction overhead and writes directly to disk, SQLite is also faster than the big database servers for most operations. In addition to the C library, the SQLite distribution includes a command-line tool for interacting with SQLite databases and SQLite bindings for Tcl/Tk. EOF