forked from pool/putty
38 lines
677 B
RPMSpec
38 lines
677 B
RPMSpec
|
Name: putty
|
||
|
Version: 0.61
|
||
|
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.xz
|
||
|
BuildRoot: %_tmppath/%name-%version-build
|
||
|
BuildRequires: gtk2-devel, xz
|
||
|
|
||
|
%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
|