141 lines
4.2 KiB
RPMSpec
141 lines
4.2 KiB
RPMSpec
Name: ZipArchive
|
|
Version: 4.1.2
|
|
Release: 3%{?dist}
|
|
Summary: Library for accessing zip files
|
|
|
|
Group: System Environment/Libraries
|
|
License: GPLv2+
|
|
URL: http://www.artpol-software.com/ZipArchive/
|
|
Source0: http://www.artpol-software.com/Downloads/ziparchive_src.zip
|
|
# switch to Linux version
|
|
Patch0: %{name}-linux-enable.patch
|
|
# add autotooled build system
|
|
Patch1: %{name}-autotools.patch
|
|
# use system zlib
|
|
Patch2: %{name}-system-zlib.patch
|
|
# Fix building with gcc-4.7
|
|
Patch3: %{name}-gcc-4.7.patch
|
|
# Fix ZipArchive not recognising dirs as such in some zips
|
|
Patch4: %{name}-4.1.1-file-attr-fix.patch
|
|
# Fix ZipArchive not building with latest version of zlib
|
|
Patch5: %{name}-4.1.1-new-zlib.patch
|
|
|
|
BuildRequires: libtool
|
|
BuildRequires: zlib-devel
|
|
|
|
%description
|
|
The ZipArchive Library can be used to add compression functionality to your
|
|
software. It is written in C++ and offers the following features:
|
|
* Compression, decompression and modification of zip archives.
|
|
* Segmented archives support (splitting and spanning).
|
|
* Unicode support in archives compatible with WinZip.
|
|
* Standard zip encryption.
|
|
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries
|
|
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 -c
|
|
%patch0 -p1 -b .linux-enable
|
|
%patch1 -p1 -b .autotools
|
|
%patch2 -p1 -b .system-zlib
|
|
%patch3 -p1 -b .gcc47
|
|
%patch4 -p1
|
|
%patch5 -p1
|
|
|
|
for i in ZipArchive/*.txt; do
|
|
sed -i.old 's/\r//' "$i"
|
|
touch -r "$i.old" "$i"
|
|
done
|
|
|
|
cd ZipArchive
|
|
rm -rf zlib bzip2
|
|
sh ./autogen.sh
|
|
|
|
|
|
%build
|
|
cd ZipArchive
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
cd ZipArchive
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/pkgconfig
|
|
install -p -m 644 %{name}.pc $RPM_BUILD_ROOT%{_libdir}/pkgconfig
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
%files
|
|
%doc ZipArchive/License.txt
|
|
%{_libdir}/libziparch-%{version}.so
|
|
|
|
%files devel
|
|
%doc ZipArchive/{Appnote.txt,_readme.txt}
|
|
%{_includedir}/ZipArchive/
|
|
%{_libdir}/libziparch.so
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
|
|
%changelog
|
|
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.2-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.2-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Mon Feb 18 2013 Dan Horák <dan[at]danny.cz> - 4.1.2-1
|
|
- updated to 4.1.2
|
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.1-11
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
* Sun Jul 29 2012 Hans de Goede <hdegoede@redhat.com> - 4.1.1-10
|
|
- Fix ZipArchive not building with the latest zlib
|
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.1-9
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.1-8
|
|
- Rebuilt for c++ ABI breakage
|
|
|
|
* Tue Jan 31 2012 Hans de Goede <hdegoede@redhat.com> - 4.1.1-7
|
|
- Fix ZipArchive not recognising dirs as such in some zips
|
|
|
|
* Mon Jan 23 2012 Hans de Goede <hdegoede@redhat.com> - 4.1.1-6
|
|
- Improve package description (rhbz#773313)
|
|
|
|
* Thu Jan 19 2012 Hans de Goede <hdegoede@redhat.com> - 4.1.1-5
|
|
- Drop custom cmake module, cmake using apps can use the .pc file
|
|
- Fix the .pc file to properly return -lziparch for --libs
|
|
|
|
* Thu Jan 12 2012 Hans de Goede <hdegoede@redhat.com> - 4.1.1-4
|
|
- Make -devel package Requires on main package include isa
|
|
- Drop buildroot and defattr boilerplate (no longer needed with recent rpm)
|
|
- Fix building with gcc-4.7
|
|
- Fix various rpmlint warnings
|
|
|
|
* Fri Dec 23 2011 Dan Horák <dan[at]danny.cz> - 4.1.1-3
|
|
- use system zlib
|
|
|
|
* Tue Dec 13 2011 Dan Horák <dan[at]danny.cz> - 4.1.1-2
|
|
- add missing *_lnx.cpp files to the library
|
|
|
|
* Tue Dec 13 2011 Dan Horák <dan[at]danny.cz> - 4.1.1-1
|
|
- initial Fedora version
|