sqlite.spec 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. ##
  2. ## sqlite.spec -- OpenPKG RPM Specification
  3. ## Copyright (c) 2000-2002 Cable & Wireless Deutschland GmbH
  4. ## Copyright (c) 2000-2002 The OpenPKG Project <http://www.openpkg.org/>
  5. ## Copyright (c) 2000-2002 Ralf S. Engelschall <rse@engelschall.com>
  6. ##
  7. ## Permission to use, copy, modify, and distribute this software for
  8. ## any purpose with or without fee is hereby granted, provided that
  9. ## the above copyright notice and this permission notice appear in all
  10. ## copies.
  11. ##
  12. ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  13. ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  14. ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  15. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  16. ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  17. ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  18. ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  19. ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  20. ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  21. ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  22. ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  23. ## SUCH DAMAGE.
  24. ##
  25. # package options
  26. %ifndef with_utf8
  27. %define with_utf8 no
  28. %endif
  29. %ifndef with_assert
  30. %define with_assert no
  31. %endif
  32. %ifndef with_readline
  33. %define with_readline no
  34. %endif
  35. # package information
  36. Name: sqlite
  37. Summary: SQL Lite
  38. URL: http://www.hwaci.com/sw/sqlite/
  39. Vendor: D. Richard Hipp
  40. Packager: The OpenPKG Project
  41. Distribution: OpenPKG [BASE]
  42. Group: Database
  43. License: PD
  44. Version: 2.7.0
  45. Release: 20020826
  46. # list of sources
  47. Source0: http://www.hwaci.com/sw/sqlite/sqlite-%{version}.tar.gz
  48. # build information
  49. Prefix: %{l_prefix}
  50. BuildRoot: %{l_buildroot}
  51. BuildPreReq: OpenPKG, openpkg >= 20020206
  52. PreReq: OpenPKG, openpkg >= 20020206
  53. %if "%{with_readline}" == "yes"
  54. BuildPreReq: readline
  55. %endif
  56. AutoReq: no
  57. AutoReqProv: no
  58. %description
  59. SQLite is a C library that implements an embeddable SQL database
  60. engine. Programs that link with the SQLite library can have SQL
  61. database access without running a separate RDBMS process. The
  62. distribution comes with a standalone command-line access program
  63. (sqlite) that can be used to administer an SQLite database and which
  64. serves as an example of how to use the SQLite library. SQLite is not
  65. a client library used to connect to a big database server. SQLite is
  66. the server. The SQLite library reads and writes directly to and from
  67. the database files on disk.
  68. Options: with_utf8=%{with_utf8}
  69. Options: with_assert=%{with_assert}
  70. Options: with_readline=%{with_readline}
  71. %prep
  72. %setup -q -n sqlite
  73. chmod a+x install-sh
  74. %build
  75. CC="%{l_cc}"
  76. export CC
  77. CPPFLAGS=""
  78. export CPPFLAGS
  79. CFLAGS="%{l_cflags -O}"
  80. export CFLAGS
  81. LDFLAGS=""
  82. export LDFLAGS
  83. LIBS=""
  84. export LIBS
  85. %if "%{with_assert}" == "no"
  86. CFLAGS="$CFLAGS -DNDEBUG=1"
  87. %endif
  88. %if "%{with_readline}" == "yes"
  89. CPPFLAGS="$CPPFLAGS -I%{l_prefix}/include -I%{l_prefix}/include/readline"
  90. CFLAGS="$CFLAGS -I%{l_prefix}/include -I%{l_prefix}/include/readline"
  91. LDFLAGS="$LDFLAGS -L%{l_prefix}/lib"
  92. LIBS="$LIBS -lreadline -ltermcap"
  93. %endif
  94. ./configure \
  95. --prefix=%{l_prefix} \
  96. %if "%{with_utf8}" == "yes"
  97. --enable-utf8 \
  98. %endif
  99. --disable-shared
  100. %{l_make} %{l_mflags -O}
  101. %install
  102. rm -rf $RPM_BUILD_ROOT
  103. %{l_shtool} mkdir -f -p -m 755 \
  104. $RPM_BUILD_ROOT%{l_prefix}/bin \
  105. $RPM_BUILD_ROOT%{l_prefix}/lib \
  106. $RPM_BUILD_ROOT%{l_prefix}/include \
  107. $RPM_BUILD_ROOT%{l_prefix}/man/man1
  108. %{l_make} %{l_mflags} install \
  109. prefix=$RPM_BUILD_ROOT%{l_prefix}
  110. %{l_shtool} install -c -m 644 \
  111. sqlite.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/
  112. strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true
  113. %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
  114. %files -f files
  115. %clean
  116. rm -rf $RPM_BUILD_ROOT