85 lines
2.3 KiB
RPMSpec
85 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package wget
|
|
#
|
|
# 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: wget
|
|
Version: 1.13.4
|
|
Release: 5
|
|
License: GPLv3+
|
|
Summary: A Tool for Mirroring FTP and HTTP Servers
|
|
Url: http://www.gnu.org/software/wget/
|
|
Group: Productivity/Networking/Web/Utilities
|
|
Source: %name-%version.tar.bz2
|
|
# PATCH-MISSING-TAG -- See http://wiki.opensuse.org/Packaging/Patches
|
|
Patch0: wgetrc.patch
|
|
# PATCH-FEATURE-UPSTREAM wget-libproxy.patch dimstar@opensuse.org -- Add libproxy support to wget
|
|
Patch1: wget-libproxy.patch
|
|
Patch3: wget-sni.patch
|
|
BuildRequires: libpng-devel
|
|
%if 0%{suse_version} > 1110
|
|
BuildRequires: libproxy-devel
|
|
%endif
|
|
BuildRequires: openssl-devel
|
|
%if 0%{suse_version} > 0910
|
|
BuildRequires: pkg-config
|
|
%endif
|
|
BuildRequires: libidn-devel
|
|
PreReq: %install_info_prereq
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Wget enables you to retrieve WWW documents or FTP files from a server.
|
|
This can be done in script files or via the command line.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0
|
|
%if 0%{suse_version} > 1110
|
|
%patch1
|
|
%endif
|
|
%patch3
|
|
|
|
%build
|
|
%if 0%{suse_version} > 1110
|
|
# only wget-libproxy.patch needs this
|
|
autoreconf --force
|
|
%endif
|
|
%configure --with-ssl=openssl
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%makeinstall
|
|
%find_lang %{name}
|
|
|
|
%post
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
%postun
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
%files -f %{name}.lang
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS COPYING NEWS README MAILING-LIST
|
|
%doc doc/sample.wgetrc util/rmold.pl
|
|
%{_mandir}/*/wget*
|
|
%{_infodir}/wget*
|
|
%config(noreplace) %{_sysconfdir}/wgetrc
|
|
%{_bindir}/*
|
|
|
|
%changelog
|