void-packages/templates/sqlite.tmpl
Juan RP b52d064544 Major changes to support multiple distfiles in templates.
Each template now needs to use $distfiles that accepts the full
URL to download the distfile and old $extract_sufx is now merged
on it, but this must be separated by the '@' character. Example:

distfiles="http://www.foo.org/blah-6.2@.tar.gz
http://www.foo.org/blob-1.0@.tar.bz2"

If distfiles contains multiple files defined, $wrksrc is now
mandatory.

--HG--
extra : convert_revision : 1c3fa35f148af8323ce3cbcf5732104960de6bc4
2008-10-14 07:52:29 +02:00

23 lines
1,003 B
Cheetah

# Template build file for 'sqlite'.
pkgname=sqlite
version=3.6.3
distfiles="http://sqlite.org/$pkgname-$version@.tar.gz"
build_style=gnu_configure
configure_args="--disable-tcl --enable-load-extension --with-readline-inc="
make_cmd="$XBPS_MASTERDIR/bin/gmake"
pkgconfig_override="sqlite3.pc"
short_desc="SQL Database Engine in a C Library"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=3fec400f69e4c15a90a7f0715d4ef1c8d87f1700
long_desc="
SQLite is a C library that implements an SQL database engine. Programs
that link with the SQLite library can have SQL database access without
running a separate RDBMS process. The distribution comes with a standalone
command-line access program (sqlite) that can be used to administer an
SQLite database and which serves as an example of how to use the SQLite
library.
SQLite is not a client library used to connect to a big database server.
SQLite is the server. The SQLite library reads and writes directly to and
from the database files on disk."