| [521] | 1 | %define name sqlite |
|---|
| 2 | %define version 2.8.17 |
|---|
| [9256] | 3 | %define release 3%{?_dist_release} |
|---|
| [521] | 4 | |
|---|
| 5 | Name: %{name} |
|---|
| 6 | Summary: SQLite is a C library that implements an embeddable SQL database engine |
|---|
| 7 | Summary(ja): SQLite は組み込み型SQLデータベースエンジンを実装するCライブラリです。 |
|---|
| 8 | Version: %{version} |
|---|
| 9 | Release: %{release} |
|---|
| 10 | Source: %{name}-%{version}.tar.gz |
|---|
| 11 | Patch0: %{name}-2.8.15-ja-patch |
|---|
| 12 | Patch1: %{name}-2.8.14-lib64.patch.bz2 |
|---|
| 13 | Patch2: %{name}-64bit-fixes.patch.bz2 |
|---|
| 14 | Group: System Environment/Libraries |
|---|
| 15 | URL: http://www.sqlite.org |
|---|
| 16 | License: Public Domain |
|---|
| 17 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
|---|
| 18 | BuildRequires: tcl, chrpath, ncurses-devel, readline-devel |
|---|
| 19 | |
|---|
| 20 | %description |
|---|
| 21 | SQLite is a C library that implements an embeddable SQL database engine. |
|---|
| 22 | Programs that link with the SQLite library can have SQL database access |
|---|
| 23 | without running a separate RDBMS process. The distribution comes with a |
|---|
| 24 | standalone command-line access program (sqlite) that can be used to |
|---|
| 25 | administer an SQLite database and which serves as an example of how to |
|---|
| 26 | use the SQLite library. |
|---|
| 27 | %description -l ja |
|---|
| 28 | SQLite は組み込み型SQLデータベースエンジンを実装するCライブラリです。 |
|---|
| 29 | SQLiteライブラリにリンクされたプログラムではSQLデータベースアクセスが |
|---|
| 30 | できるようになります。その際、別のRDBMSプロセスは不要です。 |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | %package devel |
|---|
| 34 | Summary: Header files and libraries for developing apps which will use sqlite |
|---|
| 35 | Summary(ja): SQLiteを使ってアプリを開発するためのヘッダファイルやライブラリ |
|---|
| 36 | Group: Development/Libraries |
|---|
| 37 | Requires: %{name} = %{version}-%{release} |
|---|
| 38 | |
|---|
| 39 | %description devel |
|---|
| 40 | The sqlite-devel package contains the header files and libraries needed |
|---|
| 41 | to develop programs that use the sqlite database library. |
|---|
| 42 | |
|---|
| 43 | %description devel -l ja |
|---|
| 44 | qlite-develパッケージはSQLiteデータベースライブラリを使ってプログラムを |
|---|
| 45 | 開発するために必要なヘッダファイルやライブラリを含んでいます。 |
|---|
| 46 | |
|---|
| 47 | %package static-devel |
|---|
| 48 | Summary: Static development library for the SQLite library |
|---|
| 49 | Summary(ja): SQLiteライブラリのstaticな開発用ライブラリ |
|---|
| 50 | Group: Development/Libraries |
|---|
| 51 | Requires: %{name}-devel = %{version}-%{release} |
|---|
| 52 | Provides: %{name}-static-devel = %{version}-%{release} |
|---|
| 53 | |
|---|
| 54 | %description static-devel |
|---|
| 55 | The sqlite-static-devel package contains the static header files |
|---|
| 56 | and libraries needed to develop programs that use the sqlite database library. |
|---|
| 57 | |
|---|
| 58 | %description static-devel -l ja |
|---|
| 59 | sqlite-static-develはSQLiteデータベースライブラリを使ってプログラムを開発する時に必要なstaticなヘッダファイルとライブラリを含んでいます |
|---|
| 60 | |
|---|
| 61 | %package tools |
|---|
| 62 | Summary: Command line tools for managing the sqlite library. |
|---|
| 63 | Summary(ja): SQLiteライブラリを管理するコマンドラインツール |
|---|
| 64 | Group: Applications/Databases |
|---|
| 65 | Requires: %{name} = %{version}-%{release} |
|---|
| 66 | |
|---|
| 67 | %description tools |
|---|
| 68 | The sqlite-tool package contains command line tools for managing |
|---|
| 69 | the sqlite library. |
|---|
| 70 | |
|---|
| 71 | %description tools -l ja |
|---|
| 72 | sqlite-toolはSQLiteライブラリを管理するコマンドラインツールです。 |
|---|
| 73 | |
|---|
| 74 | %prep |
|---|
| 75 | %setup -q |
|---|
| 76 | %patch0 -p0 -b .jp |
|---|
| 77 | %patch1 -p0 -b .lib64 |
|---|
| 78 | %patch2 -p1 -b .64bit-fixes |
|---|
| 79 | |
|---|
| 80 | %build |
|---|
| 81 | CFLAGS="%optflags -DNDEBUG=1" CXXFLAGS="%optflags -DNDEBUG=1" %configure -enable-utf8 |
|---|
| 82 | |
|---|
| 83 | make |
|---|
| 84 | make doc |
|---|
| 85 | |
|---|
| 86 | %install |
|---|
| 87 | [ "%{buildroot}" != "/" ] && rm -rf %{buildroot} |
|---|
| 88 | |
|---|
| 89 | install -d %{buildroot}%{_bindir} |
|---|
| 90 | install -d %{buildroot}%{_includedir} |
|---|
| 91 | install -d %{buildroot}%{_libdir} |
|---|
| 92 | install -d %{buildroot}%{_mandir}/man1 |
|---|
| 93 | |
|---|
| 94 | %makeinstall |
|---|
| 95 | install -m644 sqlite.1 %{buildroot}%{_mandir}/man1/ |
|---|
| 96 | chrpath -d %{buildroot}%{_bindir}/* |
|---|
| 97 | ## remove unuse files |
|---|
| 98 | rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la |
|---|
| 99 | |
|---|
| 100 | |
|---|
| 101 | %clean |
|---|
| 102 | [ "%{buildroot}" != "/" ] && rm -rf %{buildroot} |
|---|
| 103 | |
|---|
| 104 | |
|---|
| 105 | %post -p /sbin/ldconfig |
|---|
| 106 | |
|---|
| 107 | %postun -p /sbin/ldconfig |
|---|
| 108 | |
|---|
| 109 | |
|---|
| 110 | %files |
|---|
| 111 | %defattr(-, root, root) |
|---|
| 112 | %doc README |
|---|
| 113 | %{_libdir}/*.so.* |
|---|
| 114 | |
|---|
| 115 | %files devel |
|---|
| 116 | %defattr(-, root, root) |
|---|
| 117 | %doc doc/*.html doc/*.png |
|---|
| 118 | %{_libdir}/*.a |
|---|
| 119 | #%{_libdir}/*.la |
|---|
| 120 | %{_libdir}/lib*.so |
|---|
| 121 | %{_includedir}/*.h |
|---|
| 122 | %{_libdir}/pkgconfig/*.pc |
|---|
| 123 | |
|---|
| 124 | %files static-devel |
|---|
| 125 | %defattr(-, root, root) |
|---|
| 126 | %{_libdir}/lib*.a |
|---|
| 127 | |
|---|
| 128 | %files tools |
|---|
| 129 | %defattr(-, root, root) |
|---|
| 130 | %{_bindir}/* |
|---|
| 131 | %{_mandir}/man1/* |
|---|
| 132 | |
|---|
| 133 | %changelog |
|---|
| [9256] | 134 | * Mon Jan 12 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.17-3 |
|---|
| 135 | - rebuild with VineSeed environment |
|---|
| 136 | |
|---|
| [1989] | 137 | * Sun Oct 03 2010 Shu KONNO <owa@bg.wakwak.com> 2.8.17-2 |
|---|
| 138 | - rebuilt with rpm-4.8.1 for pkg-config |
|---|
| 139 | |
|---|
| [521] | 140 | * Sat Sep 20 2008 Shu KONNO <owa@bg.wakwak.com> 2.8.17-1vl5 |
|---|
| 141 | - applied new versioning policy, spec in utf-8 |
|---|
| 142 | - removed *.la |
|---|
| 143 | |
|---|
| 144 | * Mon May 08 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.17-0vl1 |
|---|
| 145 | - updated to 2.8.17 |
|---|
| 146 | - changed Group: |
|---|
| 147 | - run /sbin/ldconfig at %post, %postun |
|---|
| 148 | |
|---|
| 149 | * Mon Nov 08 2004 Satoshi MACHINO <machino@vinelinux.org> 2.8.15-0vl2 |
|---|
| 150 | - added BuildRequires: chrpath, ncurses-devel, readline-devel |
|---|
| 151 | - separated sub packages to static-devel, tool |
|---|
| 152 | - added ja subscription |
|---|
| 153 | |
|---|
| 154 | * Tue Aug 17 2004 HOTTA Michihide <hotta@net-newbie.com> 2.8.15-0vl1 |
|---|
| 155 | - add BuildRequires: tcl |
|---|
| 156 | - upstream release |
|---|
| 157 | |
|---|
| [9256] | 158 | * Tue Nov 11 2003 HOTTA Michihide <hotta@net-newbie.com> 2.8.6-0vl1 |
|---|
| [521] | 159 | - 1st release |
|---|