Compare commits
55 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
13ed68a517 |
||
|
|
749ba655f5 |
||
|
|
53b102ac58 | ||
| 38daecf3a2 | |||
|
|
8a4c10986e |
||
|
|
3def5b4155 |
||
|
|
eed456e273 |
||
|
|
bdc399d5ab | ||
|
|
60d188d835 | ||
|
|
c8129a0141 |
||
|
|
11c97039a2 |
||
|
|
1d23574a56 | ||
|
|
d23de86b37 | ||
| f0194293d9 | |||
| e6f6ed5fb1 | |||
|
|
fc49333f0d | ||
|
|
188cd39752 | ||
|
|
c7d5eaef6b |
||
|
|
9986b2e8cf |
||
|
|
2276e62054 |
||
|
|
0852fcd1db | ||
|
|
69141f8e0e |
||
|
|
b7c36c6fc3 |
||
| 18276d0208 | |||
|
|
f05303f83e |
||
|
|
05187dd893 |
||
|
|
6cb1c53a80 | ||
| 733d0016db | |||
|
|
8ac6410a31 |
||
|
|
23c1a3fb40 |
||
|
|
5e0001f377 | ||
|
|
6faa4a5dcb |
||
|
|
86d336c67b |
||
|
|
379d80c9ac |
||
|
|
037613886b |
||
|
|
91364e3aad |
||
|
|
6e37d3cc82 |
||
|
|
d4a49b5dd3 |
||
|
|
9aaee29314 |
||
|
|
afc259dacc |
||
|
|
b4e42d5c2e | ||
|
5df37ea082 |
|||
|
fb5b542ab2 |
|||
|
|
18cd51d8dc | ||
|
|
073fe11563 | ||
|
|
ff69ee4f81 | ||
|
|
508251fdfe | ||
|
|
44b2ebdb3b | ||
|
|
7885220843 | ||
|
|
5facd758c9 | ||
|
|
ec90e0c9f1 | ||
|
|
c026c32889 | ||
|
|
dcc8ed2fe7 | ||
| 9d7f8f175c | |||
|
|
3afaf0005f |
4 changed files with 1 additions and 98 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +0,0 @@
|
|||
/zimlib-1.0.tar.gz
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Renamed to libzim.
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
d5370ef03c4399ffb73e73807e0bec14 zimlib-1.0.tar.gz
|
||||
96
zimlib.spec
96
zimlib.spec
|
|
@ -1,96 +0,0 @@
|
|||
Name: zimlib
|
||||
Version: 1.0
|
||||
Release: 6%{?dist}
|
||||
Summary: Library for reading/writing ZIM files
|
||||
|
||||
License: GPLv2+
|
||||
URL: http://openzim.org/wiki/Main_Page
|
||||
Source0: http://www.openzim.org/download/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: xz-devel
|
||||
|
||||
%description
|
||||
The zimlib is the standard implementation of the ZIM specification. It is a
|
||||
library which implements the read and write method for ZIM files. Use zimlib in
|
||||
your own software - like reader applications - to make them ZIM-capable without
|
||||
the need having to dig too much into the ZIM file format. zimlib is written in
|
||||
C++. It also includes the binaries zimsearch and zimdump, for directly
|
||||
searching and viewing ZIM file contents.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries and header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
# notified upstream about non-preserving installation of files. He filed a bug.
|
||||
%make_install INSTALL="/usr/bin/install -c -p"
|
||||
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
|
||||
%files
|
||||
%doc AUTHORS COPYING
|
||||
%{_bindir}/zimdump
|
||||
%{_bindir}/zimsearch
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
%files devel
|
||||
%{_includedir}/zim/
|
||||
%{_libdir}/*.so
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Apr 26 2013 Micah Roth <micah.roth_ucla.edu> 1.0-5
|
||||
- forced INSTALL to preserve timestamps for non-compiled files
|
||||
|
||||
* Thu Apr 25 2013 Micah Roth <micah.roth_ucla.edu> 1.0-4
|
||||
- --formal review volter--
|
||||
- removed INSTALL, NEWS, README files from %%docs
|
||||
- added COPYING file to %%docs
|
||||
- removed unnecessary commented lines and empty sections
|
||||
- improved %%files devel section with asterisk removal and more specificity
|
||||
- added spaces in the %%changelog area between updates
|
||||
|
||||
* Tue Apr 23 2013 Micah Roth <micah.roth_ucla.edu> 1.0-3
|
||||
- --informal review volter--
|
||||
- updated descriptions to match %%files lists
|
||||
- added --disable-static to %%configure
|
||||
|
||||
* Sat Apr 20 2013 Micah Roth <micah.roth_ucla.edu> 1.0-2
|
||||
- added %%doc files
|
||||
- removed commented lines
|
||||
- removed --disable-static because it doesn't apply (right?)
|
||||
- ---volter's informal review---
|
||||
- moved binaries to base package %%files list
|
||||
- commented libtool BR
|
||||
- uncommented removal of *la file(s)
|
||||
- added macros into Source0
|
||||
- commented *a %%files list entry
|
||||
|
||||
* Sat Apr 20 2013 Micah Roth <micah.roth_ucla.edu> 1.0-1
|
||||
- created spec file
|
||||
- commented automake and autotools BRs as recommended by rdieter
|
||||
Loading…
Add table
Add a link
Reference in a new issue