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