putty/putty.spec

42 lines
811 B
RPMSpec

Name: putty
Version: 0.62
Release: 0
Group: System/X11/Utilities
Summary: GTK-based terminal emulator program
License: MIT
URL: http://www.chiark.greenend.org.uk/~sgtatham/putty/
Source: %name-%version.tar.bz2
Patch1: putty-01-werror.diff
Patch2: putty-02-remove-gtk1.diff
BuildRoot: %_tmppath/%name-%version-build
BuildRequires: autoconf, automake, krb5-devel, gtk2-devel
%description
PuTTY is a terminal emulator application which can act as a client
for the SSH, Telnet, rlogin, and raw TCP computing protocols and as a
serial console client.
%prep
%setup -q
%patch -P 1 -P 2 -p1
%build
pushd unix/;
autoreconf -fi;
%configure
make %{?_smp_mflags};
popd;
%install
pushd unix/;
make install DESTDIR="%buildroot";
popd;
%files
%defattr(-,root,root)
%_bindir/*
%doc %_mandir/man*/*
%changelog