putty/putty.spec

38 lines
674 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
BuildRoot: %_tmppath/%name-%version-build
BuildRequires: 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
%build
pushd unix/;
%configure
make %{?_smp_mflags};
popd;
%install
pushd unix/;
make install DESTDIR="%buildroot";
popd;
%files
%defattr(-,root,root)
%_bindir/*
%doc %_mandir/man*/*
%changelog