106 lines
2.9 KiB
RPMSpec
106 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package unzip
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
|
|
Name: unzip
|
|
License: BSD3c
|
|
Group: Productivity/Archiving/Compression
|
|
AutoReqProv: on
|
|
Version: 6.00
|
|
Release: 12
|
|
%define fileversion 60
|
|
Summary: A program to unpack compressed files
|
|
Source: %{name}%{fileversion}.tar.bz2
|
|
Url: http://www.info-zip.org/
|
|
Patch0: unzip.dif
|
|
Patch1: unzip-iso8859_2.patch
|
|
Patch3: unzip-optflags.patch
|
|
Patch4: unzip-5.52-filename_too_long.patch
|
|
Patch5: unzip-no_file_name_translation.patch
|
|
Patch8: unzip-open_missing_mode.patch
|
|
Patch10: unzip-5.52-use_librcc.patch
|
|
Patch11: unzip-no-build-date.patch
|
|
Patch12: unzip-dont_call_isprint.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: librcc-devel
|
|
Suggests: librcc0
|
|
|
|
%description
|
|
UnZip is an extraction utility for archives compressed in .zip format
|
|
(known as "zip files"). Although highly compatible both with PKWARE's
|
|
PKZIP(tm) and PKUNZIP utilities for MS-DOS and with Info-ZIP's own Zip
|
|
program, our primary objectives have been portability and non-MS-DOS
|
|
functionality. This version can also extract encrypted archives.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Info-ZIP <zip-bugs@lists.wku.edu>
|
|
|
|
%prep
|
|
%setup -q -n %{name}%{fileversion}
|
|
%patch0
|
|
%patch1
|
|
%patch3
|
|
%patch4
|
|
%patch5
|
|
%patch8
|
|
%patch10
|
|
%patch11
|
|
%patch12
|
|
|
|
%build
|
|
export RPM_OPT_FLAGS="%optflags \
|
|
-D_GNU_SOURCE -DRCC_LAZY -DWILD_STOP_AT_DIR \
|
|
-DLARGE_FILE_SUPPORT -DUNICODE_SUPPORT \
|
|
-DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE -DNO_LCHMOD \
|
|
-DDATE_FORMAT=DF_YMD -I. -fstack-protector -fno-strict-aliasing"
|
|
|
|
make %{?_smp_mflags} -f unix/Makefile LF2="-ldl" linux_noasm
|
|
|
|
%check
|
|
make -f unix/Makefile check
|
|
|
|
%install
|
|
mkdir -p $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
|
|
for i in unzip funzip unzipsfx; \
|
|
do install $i $RPM_BUILD_ROOT%{_bindir};done;
|
|
ln -s unzip $RPM_BUILD_ROOT%{_bindir}/zipinfo
|
|
install unix/zipgrep $RPM_BUILD_ROOT%{_bindir}
|
|
for i in man/*.1; \
|
|
do \
|
|
install -m 644 $i $RPM_BUILD_ROOT%{_mandir}/man1/
|
|
done
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc %{_mandir}/man1/*
|
|
%doc BUGS COPYING.OLD Contents History.* INSTALL LICENSE README ToDo WHERE
|
|
%doc *.txt proginfo
|
|
%{_bindir}/unzip
|
|
%{_bindir}/funzip
|
|
%{_bindir}/unzipsfx
|
|
%{_bindir}/zipinfo
|
|
%{_bindir}/zipgrep
|
|
|
|
%changelog
|