Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added ldconfig invocations for postinstall and postuninstall. Updated package URL and description to match the current website. (CVS 5287) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
66529ae3a21ea8c57d3f50cdf6e1e892 |
User & Date: | mihailim 2008-06-23 20:55:21.000 |
Context
2008-06-23
| ||
21:18 | Changed HTML mode output to use lowercase tags making good on the XHTML output promise (the DTDs indeed mandate lowercase) and closing #450. (CVS 5288) (check-in: e07ed82caf user: mihailim tags: trunk) | |
20:55 | Added ldconfig invocations for postinstall and postuninstall. Updated package URL and description to match the current website. (CVS 5287) (check-in: 66529ae3a2 user: mihailim tags: trunk) | |
18:49 | Fix a bug in handling queries on the sqlite_master table with an empty (0 bytes in size) database file. (CVS 5286) (check-in: f8238770bf user: danielk1977 tags: trunk) | |
Changes
Changes to spec.template.
1 2 3 4 5 6 7 8 9 10 | %define name sqlite %define version SQLITE_VERSION %define release 1 Name: %{name} Summary: SQLite is a C library that implements an embeddable SQL database engine Version: %{version} Release: %{release} Source: %{name}-%{version}.tar.gz Group: System/Libraries | | | > | > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | %define name sqlite %define version SQLITE_VERSION %define release 1 Name: %{name} Summary: SQLite is a C library that implements an embeddable SQL database engine Version: %{version} Release: %{release} Source: %{name}-%{version}.tar.gz Group: System/Libraries URL: http://www.sqlite.org/ License: Public Domain BuildRoot: %{_tmppath}/%{name}-%{version}-root %description SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional 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. %package -n %{name}-devel Summary: Header files and libraries for developing apps which will use sqlite Group: Development/C Requires: %{name} = %{version}-%{release} %description -n %{name}-devel The sqlite-devel package contains the header files and libraries needed to develop programs that use the SQLite database library. %prep %setup -q -n %{name} %build CFLAGS="%optflags -DNDEBUG=1" CXXFLAGS="%optflags -DNDEBUG=1" ./configure --prefix=%{_prefix} make make doc %install install -d $RPM_BUILD_ROOT/%{_prefix} install -d $RPM_BUILD_ROOT/%{_prefix}/bin install -d $RPM_BUILD_ROOT/%{_prefix}/include install -d $RPM_BUILD_ROOT/%{_prefix}/lib make install prefix=$RPM_BUILD_ROOT/%{_prefix} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %clean rm -fr $RPM_BUILD_ROOT %files %defattr(-, root, root) %{_libdir}/*.so* %{_bindir}/* |
︙ | ︙ |