]> git.pld-linux.org Git - packages/sqlite3.git/blame - sqlite3.spec
- update to 3.3.4
[packages/sqlite3.git] / sqlite3.spec
CommitLineData
c743401f
AM
1# TODO:
2# - fix lib64 in tcl module
7c673bd5
JB
3# - date test fail on tcl8.5 because of missing tcl library initialization
4# (and thus unavailable clock command)
17b8c9f1 5#
6# Conditional build:
7%bcond_without tests # don't run tests
1a6aae8d 8%bcond_without tcl # disable tcl extension
9%bcond_without docs # disable documentation building
17b8c9f1 10#
11Summary: SQLite library
12Summary(pl): Biblioteka SQLite
22ef5ab8 13Name: sqlite3
a3d8a32d 14Version: 3.3.4
140e6175 15Release: 1
17b8c9f1 16License: LGPL
17Group: Libraries
18# Source0Download: http://sqlite.org/download.html
e56bde73 19Source0: http://sqlite.org/sqlite-%{version}.tar.gz
a3d8a32d 20# Source0-md5: e31b390c294c0ea093f0bed3353fdff2
21Patch0: %{name}-sign-function.patch
17b8c9f1 22URL: http://sqlite.org/
23BuildRequires: autoconf
24BuildRequires: automake
25BuildRequires: libtool
26BuildRequires: readline-devel
1a6aae8d 27%{?with_tcl:BuildRequires: tcl-devel}
17b8c9f1 28BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
29
ccaeded7 30%ifarch alpha %{x8664}
0a0f5bcf
AM
31%undefine with_tests
32%endif
33
c4d7d942
34# disabling tcl currently breaks making test target,
35# some hack in Makefile needs to be done
36%if %{without tcl}
37%undefine with_tests
38%endif
39
c743401f
AM
40%define _ulibdir /usr/lib
41
17b8c9f1 42%description
43SQLite is a C library that implements an SQL database engine. A large
44subset of SQL92 is supported. A complete database is stored in a
45single disk file. The API is designed for convenience and ease of use.
46Applications that link against SQLite can enjoy the power and
47flexiblity of an SQL database without the administrative hassles of
48supporting a separate database server. Because it omits the
49client-server interaction overhead and writes directly to disk, SQLite
50is also faster than the big database servers for most operations. In
51addition to the C library, the SQLite distribution includes a
52command-line tool for interacting with SQLite databases and SQLite
53bindings for Tcl/Tk.
54
55%description -l pl
56